0
votes
0answers
6 views
Subclasses in separate assemblies with FluentNHibernate
I have a class A in one assembly and subclass B that extends A in another assembly that I am trying to auto-map. There are classes that have relationships to A, and classes that ha …
1
vote
1answer
97 views
Delphi: Proper time to subclass, and restore, a control?
What is the correct place/time to start subclassing a control?
What is the proper time to restore the original window proc?
Right now i subclass during form creation:
procedure …
1
vote
1answer
36 views
What is the cleanest way to add code to contrib.auth
I've migrated an old joomla installation over to django. The password hashes is an issue though. I had to modify the get_hexdigest in contrib.auth.models to have an extra if statem …
1
vote
3answers
130 views
How to reliably subclass UITableViewCell for grouped UITableView?
When writing a customized subclass of UITableViewCell, I find that the results work well for the rectangular cells of a plain-styled UITableView, but do not work at all for the rou …
1
vote
2answers
99 views
Why is wx.SingleChoiceDialog not subclassing properly
I'm trying to subclass the wxpython SingleChoiceDialog class. I have a TableChoiceDialog class that inherits from SingleChoiceDialog adding generic functionality, and I have 2 sub …
1
vote
2answers
25 views
How do you put a subclass method into a superclasses JLabel?
So here's the class and the super class, question to follow:
TestDraw:
package project3;
import java.awt.BorderLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
pub …
-1
votes
3answers
57 views
Create the same border type around all my controls
I tried to create my own Border class and then insert it in my controls but then it seems I cannot assign names to everything inside the borders:
..
<my:ElementBorder>
…
0
votes
1answer
55 views
NHibernate Subclass of a Joined-Subclass problem
I have an application that has a core assembly with base classes that I need to inherit from.. I need to save these to the database and after reading about NHibernate decided to us …
0
votes
1answer
35 views
hibernate subclass one to one mapping
hi all, i got a complicate mapping, i think it suppose to work...but why it compile A.d column is not existed???
public abstract Class A {
private Integer Id;
..
...
}
public Cla …
0
votes
2answers
12 views
TextFields not loading in subclass of NSWindowController
I am working on a second preferences style panel (but preferences related to a specific document.) My myDocument file is getting a little large so I decided to try using a separate …
2
votes
4answers
110 views
How to call overrided methods in a subclass? Potential candidate for refactoring
Originally I had a design problem where I needed five subclasses of a superclass, where all but two would use the same generic method of doing things and the other two classes woul …
0
votes
1answer
90 views
Error setting property on CLLocation subclass
I've defined this subclass of CLLocation
MyLocation.h
@interface MyLocation: CLLocation {
NSString *datum;
NSString *ellipsoid;
}
@property(nonatomic,retain) NSString *e …
1
vote
1answer
64 views
Subclassing python’s dict, override of __setitem__ doesn’t retain new value
Hi, I'm subclassing dict, but ran into a problem with setitem where one assignment works, but another assignment does not. I've boiled it down to the following basic problem:
clas …
0
votes
2answers
77 views
Shortcut for subclassing in Scala without repeating constructor arguments?
Let's say I have some classes like this:
abstract class View(val writer: XMLStreamWriter) {
// Implementation
}
class TestView(writer: XMLStreamWriter) extends View(writer) { …
1
vote
2answers
452 views
How to initialize an NSObject’s subclass on iPhone?
I want to write some methods in a class so that other classes can call these methods using [instance methodName:Parameter].
If the class is a subclass of UIViewController, I can …
