Tagged Questions
The supertype tag has no wiki summary.
3
votes
4answers
278 views
How do I apply subtypes into an SQL Server database?
I am working on a program in which you can register complaints. There are three types of complaints: internal (errors from employees), external (errors from another company) and supplier (errors made ...
2
votes
3answers
684 views
How do I create an F# list containing objects with a common superclass?
I have two functions, horizontal and vertical, for laying out controls. They work like this:
let verticalList = vertical [new TextBlock(Text = "one");
new TextBlock(Text ...
1
vote
1answer
67 views
How do I setup super- and sub-type relationships in CodeIgnitor's DataMapper ORM?
I'm running an online food journal where users can record journal entries. There are four types of entries: food entries, exercise entries, measurements, and completed tasks. Entries have several ...
1
vote
4answers
167 views
Supertyping Tables - Is Multiple Inheritance Possible?
It's possible that this question either has a simple answer that's a standard practice, or has no answer because it can't be done for a simple reason, or is otherwise just an interesting thought ...
0
votes
2answers
43 views
How do I use the super type of generic class in Java?
In my code I have a number of ArrayLists that are passed into a sorting method. Each of these ArrayLists have different Generic types, but all of these types are implementations of Sorter. The sorting ...
0
votes
4answers
247 views
isAnnotationPresent() return false when used with super type reference in Java
I m trying to get the annotation details from super type reference variable using reflection, to make the method accept all sub types. But isAnnotationPresent() returning false. Same with other ...
0
votes
0answers
596 views
The method onKeyPreIme(int, KeyEvent) of type myClass must override or implement a supertype
I am trying to create a lock screen in an app so that when the user requests it (remotely) the phone will lock itself with a preset password.
I'm trying to use the onKeyPreIme method because I read ...
0
votes
0answers
59 views
Detecting supertype changes through EMF Compare for the purpose of creating a common Ecore model
I'm processing a Diff of n Ecore models (I have extended EMF Compare so I can compare more than 2 or 3 and display results of all pairwise comparisons under the original model element). The idea ...
0
votes
1answer
394 views
Subtype Supertype with Oracle Object Type Creation. Limit on the number of subtypes?
I have run into an issue when creating a object type in Oracle 10g that inherits from a supertype. We currently have many object types that inherit from this supertype and recently the compiler ...
-1
votes
3answers
41 views
How do I call the functions of the parent class from an instance of a subclass?
normally, (in subtype definition) I use
function enable() {
parent::enable();
}
function disable() {
parent::disable();
}
and then I call $subtypeinstance->enable()
but can I also use ...
-1
votes
1answer
35 views
When I extend a class, do I call the static functions directly from a subtype or should I use parent:: each time?
When I defined a function in a supertype and called without parent:: it gave me and error teling me it's undefined function. I am wondering if I should use parent:: each time or if I am doing ...