0
votes
1answer
21 views
Rails - Roles or Inheritance?
I began writing an app using declarative_authorization (http://github.com/stffn/declarative%5Fauthorization) but I'm now wondering if it's the correct approach.
In my app, I was giving some Users a …
1
vote
2answers
37 views
C# exposing to COM - interface inheritance
Say I have a class BaseClass that implements IBaseClass
Then I have an interface IClass that inherits IBaseClass.
Then I have a class named class that implements IClass.
For example:
…
0
votes
2answers
64 views
Calling descendant virtual methods from static method
First let's establish this.
I have
public abstract class Foo
{
public static void StaticMethod()
{
}
}
public class Bar : Foo
{
}
is it valid to call
Bar.StaticMethod();
???
If so, let's …
2
votes
2answers
57 views
C#: Typing variables holding instances of constrained generic classes
I am just starting to get to grips with generics and am (ab)using them to refactor a fairly complex section of my code (I've only been using c# for a little while but am fairly experienced in other …
1
vote
3answers
55 views
Inheritance in Python Such That All Base Functions Are Called
Basically, what I want is to do this:
class B:
def fn(self):
print 'B'
class A:
def fn(self):
print 'A'
@extendInherit
class C(A,B):
pass
c=C()
c.fn()
And have the …
0
votes
2answers
27 views
Rails Changing Polymorphic Type Of An Object
We have a parent model Vehicle that is inherited to make classes Car, Truck, SUV. In our form, we allow the user to edit the data for a bunch of Vehicles, and one of the attributes for each vehicle is …
0
votes
3answers
113 views
Java Inheritance
package package.b;
class ClassB {
public ClassB(BaseClass bc, XMLBase obj1) { }
}
import package.b.ClassB;
class A extends BaseClass {
public void function() {
TestXML obj1 = new …
3
votes
4answers
100 views
C# - Explicit Interfaces with inheritance?
Output:
B->Hello! from Explicit.
Shouldn't it be:?
A->Hello! from Explicit.
Why doesn't explicit cast (IHello)a call IHello.Hello() from class A?
interface IHello
{
void Hello();
}
class …
0
votes
5answers
95 views
Making a generic parameterized type of anything
So I am trying to make a parameterized type that will work for anytype in Java this includes anything that is an object, and also the primitives types. How would i go about doing this?
Ok, suppose I …
0
votes
1answer
27 views
Unable set table mapping to Boolean = False
Hello folks!
I am trying to set an inheritance in Entity-Framework, I want to set the mapping when BooleanColumn = True.
I am unable to do so.
2
votes
4answers
70 views
Creating an object of the type a static method is called on in an inheritance chain in C#
I am trying to do something like this in C#
public class ParentClass {
public static ParentClass GetSomething()
{
var thing = new // ?????
return thing;
}
}
public class ChildClass : …
0
votes
3answers
19 views
WinForm Inheritance designer settings are copied to derived form.
I am experiencing some annoying behavior with Visual Studio .NET 2008.
We have created a base form, and a base grid derived from Infragistics UltraGrid.
In the base form, we have set some properties …
0
votes
7answers
107 views
C# inheritance casting one child to another
I have this simple structure: 1 parent, and two different childs.
public class Parent{}
public class ChildA : Parent{}
public class ChildB : Parent{}
I have an object objA of type ChildA, which I …
0
votes
1answer
11 views
Not nullable fields in table inheritance - EDM
I just read this nice article that taught me how to use inheritance (Table-per-hirarchy).
I was wondering, say I have a column 'HireDate' that need to use in the sub-class.
That's for sure that in …
2
votes
3answers
74 views
Is is possible to override a hidden method?
Say I have the following hierarchy:
public class MyClass
{
protected virtual void Method() { ... }
}
public class MySubClass : MyClass
{
public new virtual void Method() { ... }
}
public class …
