Refers to structural definition of class unit in object-oriented languages.

learn more… | top users | synonyms

7
votes
2answers
205 views

How to force only smart pointers instance for a class?

I've been working on a way to prevent user of using a class without smart pointers. Thus, forcing them to have the object being heap allocated and managed by smart pointers. In order to get such a ...
2
votes
3answers
73 views

Is it possible to move variable's values from one class to another class without inheritance in java?

I have learnt how to call methods and even variables between two classes. I wanted to know if you can move values from one class to another without using inheritance. Here is an example: I create ...
1
vote
1answer
20 views

PHP design- abstract classes and factory methods

I am trying to work out the best way to design my classes and I think abstract classes it the right way here, but I'm not sure! I am building a plugin for Wordpress carts that at the moment, will work ...
4
votes
2answers
95 views

Designing folder/file system?

I'm trying to create a folder/file system similar to the ones used in most OSes. Basically I've figured out that I should use three classes; File, Folder, and a common base class. Let's call it Common ...
0
votes
1answer
34 views

C#: How can I pass a class to a function in separate dll

I tried to code my own serialization dll. The code itself works as expected. Now I want to put the entire code into a dll file. My problem is the following: how do I tell the dll WHICH class it ...
0
votes
1answer
33 views

How do you balance out code structuring (few big functions vs. many small ones) [closed]

the golden rule of code structuring is always said as splitting into many sub functions is a good thing. Though I noticed it becomes a problem in complex applications when a class of e.g. 10 bigger ...
0
votes
1answer
52 views

Hierarchy classes dependency

I want some advice about class designs. Let's say that I have 3 classes, "class A", "class B" and "class C". Each class has different namespaces. "A" has an instance of "B", and "B" has an instance of ...
-1
votes
0answers
14 views

Where is ExploreWClass Defined?

Searching for "ExploreWClass" in MSDN's Search Engine returns some examples that use it, but nothing in the Library or anything Defining it Any clues would be appreciated
0
votes
1answer
24 views

Designing a Packet-Family

In Cisco's UCCX CTI Protocol there are Requests, Confirmations & Events. (Link for further information to this protocol - cisco account neeeded - Link) All of them basically exist of some fixed ...
0
votes
2answers
114 views

Writing classes - good practice [closed]

First thing is that I didn't really want to post this one on stack code exchange, because this is really small amount of code written in about 5 mins. I want to ask you if the class (my first in c++) ...
0
votes
1answer
29 views

Is it possible to use a parent table Id instead of child table Id, when child table should put it's Id into another table

I have this Generalization relation ship between some classes in my class diagram. FirstClass as a base class that has Name attribute, SecondClass as a derived class that the FirstClass is it's base ...
0
votes
2answers
59 views

what is the differences between class and dataType

As i read through UML specification that: class has a set of attributes/operations and data type has a set of attributes/operations 1)with regards to attributes/operations of data type what this ...
0
votes
1answer
44 views

What is the correct way of getting all records from a database using Python and OOP?

What would be the correct way of getting all the records from a table in a database? My idea would be: import MySQLdb Class User: def __init__(self, id): self.db = ...
1
vote
1answer
83 views

Effective use of static fields and methods in a class? Initialised in the constructor or in declaration? I need guidance

I know that it exist numerous questions about when to use or not use static fields and methods in Object Oriented Programming, but most examples boils down to using Math.Pi or similar simplified ...
2
votes
2answers
73 views

Using exception to inform about delegate not set - bad design?

I've made a document class that downloads and reads the text in it. The smart thing is that it only downloads and reads the text in the document when or if it's needed. By using the Text property ...
0
votes
0answers
38 views

class design with regards to webforms in asp.net

i am planning a web-app which is to be coded in asp.net webforms. currently i have done use case analysis and would like to start with my static model. only problem is, i have no idea of what to ...
2
votes
2answers
96 views

How to express domain logic in a domain class?

I'm trying to port a years old MS Access app with spaghetti VBA code to C# and OOP, and I'm struggling to find the best way to put domain logic in my domain classes. I'll use a Country class as a ...
0
votes
2answers
135 views

Definition of C++ methods inside the class like Java

I'm Java programmer and I'm new to C++ Programming. In java we have to write all classes in separate files and all method's definitions are right inside the class. But now in C++ I'm wonder that why ...
0
votes
1answer
41 views

Implementing rights management in class design

I have to do a Project where there will be a number of users who will use the application. Users can belong to either Users, Executive or Administrator. Each Usergroup has their own rights. All data ...
0
votes
2answers
31 views

Android class design - should I reinstantiate dialog classes in my activity each time I want to show them?

MainActivity: GeneralDialogFragment history_dialog = new GeneralDialogFragment(); public void showHistory(View view) { Bundle bdl = new Bundle(1); bdl.putString("dialog_type", "history"); ...
0
votes
3answers
448 views

class versus interface in uml

As we know in OOP that interface provides a set of operations without implementation but class is the opposite. in Object oriented design ,we use uml the interface has a set of operations without ...
0
votes
2answers
168 views

Using Integer vs String for a “type” value (Database and class design)

I've been developing a few mobile games, in which those games fetch their data from a server-database. I'm used to storing "type" values as an integer identifier, and an enum in the client to ...
0
votes
2answers
28 views

Residing a member of parent class type inside another class

#include <iostream> class BarParent { virtual void fuz() { std::cout << "BarParent" << std::endl; } }; class BarChild : public BarParent { virtual void ...
3
votes
2answers
80 views

How can i make this work with java generics

Suppose I have this interfaces and concretes: public interface MeterValue {} public class MeterValueA implements MeterValue {} public class MeterValueB implements MeterValue {} public interface ...
0
votes
1answer
30 views

generalizing classes or not when using mapper for database

lets say i have the following classes: customer, applicant, agency, partner i need to work with databases and use mappers to map the objects to the database. my question is, can i generalize these ...
-2
votes
1answer
83 views

design pattern such that access to the Derived class is only possible through a library [closed]

Trying to achieve a design where the classes that implement interfaces should only be callable from a Library. In other words, the access to the implemented interfaces should be through the library ...
1
vote
3answers
73 views

Designing methods with similar functionality but different return types

I am writing a class that parses text from a given file. There are a few different "types" of text, and the parsing rules differ for each. For example, one type of text, we will just call "Plain ...
-1
votes
1answer
63 views

designing classes based on database-design

i have a little problem with my ojt-project. i was given a database design and have to do a class design for it. however i have never designed classes based on an exisiting database so i am confused ...
0
votes
1answer
146 views

Which class should be responsible for serialization?

I have a very general question about what is a better approach and why: make an object responsible for serializing itself or have a separate Reader and Writer classes to do this? Here is an ...
0
votes
3answers
93 views

Can I create a generic base class for this case? Any other suggestions? [duplicate]

Possible Duplicate: C# -Generics Help Let’s start with this interface IBar as below. public interface IBar<T> : IQueryable<T>, IEnumerable<T> where T : class { ...
2
votes
1answer
102 views

C++ serialization: overloading insert operator with write()

I have a simple class which contains a dynamically allocated array and I need to serialize it so it can be stored in a binary file. Because of the array I can't use sizeof(MyClass) to simply allocate ...
0
votes
1answer
39 views

Does it make any real sense to make read-only properties out of “reference types” in an AS3 class?

Take the following code: private var m_iQuanitity:int; public function get quantity():int { return m_iQuantity; } That seems to make perfect sense. You can see what the quantity is from an ...
5
votes
3answers
204 views

Designing classes to cope with frequent database schema changes

I am working on a database that is maintained by another system, so I am unable to make any drastic changes to the tables. The tables in this database have quite a few fields (upwards of 30+) with no ...
1
vote
3answers
374 views

Qt: signal/slot design and performance

I've recently started using Qt and I need some clarification on signal/slot mechanism. I understand how it's a great tool for the GUI and communication between objects living in separate threads, but ...
0
votes
3answers
31 views

how to tell if specifications are modelled using database oriented approach or class design oriented approach

Given a problem specification, how to tell if it is a database design problem or class design(object oriented design) problem?
3
votes
1answer
83 views

@private - using it or not?

What is the point of using the @private directive in Xcode when you are working alone or with a team that can access all properties, ivars of an app? Is there any advantage like memory usage, ...
2
votes
3answers
94 views

Internal class declaration [duplicate]

Possible Duplicate: Pros and cons of using nested C++ classes and enumerations? Consider the following declaration. class A { public: class B{ }; }; Nothing special. But ...
3
votes
4answers
162 views

Implementing clone() for immutable classes

I am developping a class library. I have an abstract base class Matrix for matrices that provides implementations for some of the basic methods. Derived from Matrix are concrete subclasses for ...
0
votes
1answer
137 views

Lifetime of variables: Reference becomes NULL

I have a problem regarding the lifetime of a variable. My Android-App should write sensor-data to a file and send this file to a server. For this I created a Activity (Main-Activity) and two ...
0
votes
1answer
75 views

Class design with params and dependencies

I designed my database and cache layer after Zend Framework 1, like this: class Cache { public static function create($adapter, array $params) { $class_name = 'Cache_Adapter_' . ...
2
votes
2answers
908 views

UML class diagram: is this how to write abstract method and property?

When I was creating the first time an uml class diagram for a small C# project I had some trouble with the properties. At the end I just added the properties as a variable with ...
1
vote
2answers
630 views

Yii - Extending Controller or CController?

I need to create a class where we should have same methods shared with all my controllers, or almost all anyway. So, I was looking for extending controller, but THEN, I notice that Controller Class ...
0
votes
2answers
83 views

Inheritence Class Design (in Java)

for a small game I want to design two classes which should draw my Units. I have the classes Unit and Settler which extends Unit. To draw them I have the classes UnitView and SettlerView. Now ...
3
votes
1answer
68 views

Value object with “specified” flag

I need to pass values to a method, along with an indication of whether each value is specified or unspecified, since null is a valid value itself, and therefore cannot be interpreted as "unspecified". ...
0
votes
0answers
107 views

Idiom for recursively applying JSON object_hook to nested member?

I'm writing a base class which loads JSON objects, in a Pythonic way. Not sure I am using object_hook correctly here? If not please show me the right idiom. I convert the value in the (key,value) ...
2
votes
1answer
37 views

Ensuring read-only access to API return values when a plugin architecture is present

I have a situation where I've exposed a plugin architecture to my class library, and I want others to be able to implement the interfaces I've created and have their custom implementations be used by ...
1
vote
1answer
324 views

Composite pattern in PHP, how to design classes to work around the need to extend two classes

I'm using the composite pattern to have reusable elements to build a page. for this i have a simple interface which drives the pattern interface Ai1ec_Renderable { /** * This is the main ...
1
vote
2answers
66 views

How to call a class method on a property of that class

I am trying to figure out how to call a class method on a property of that class. Here are my two classes: public class MrBase { public int? Id { get; set; } public String Description { get; ...
0
votes
2answers
139 views

OOP Breakdown and design for a Fairly small application

i am working on a small app as a prototype kind of project. I have comeup with a initial design, however i would like to know how some of you smart guys would tackle this problem. Domain objects: ...
4
votes
3answers
184 views

Why singleton class should be sealed?

I want to know the why a singleton class should be sealed. If we are giving the constructor as private we can prevent the class to be derived right?.. Below i'm pasting few lines from MSDN. Please ...

1 2 3 4 5 17