Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
4answers
2k views

<Subtype>Designer</Subtype> Added then removed by Visual Studio on load/unload

Anyone see this before? I have a large Visual Studio project that keeps adding [Subtype] Designer[/Subtype] to my .vcproj then removing it on the next open and close of the project. There is only ...
23
votes
2answers
3k views

Why is PartialFunction <: Function in Scala?

In Scala, the PartialFunction[A, B] class is derived from type Function[A, B] (see Scala Reference, 12.3.3). However, this seems counterintuitive to me, since a Function (which needs to be defined for ...
19
votes
4answers
497 views

How to eliminate subtype dependency?

In the example below I have written one to_str() function and one set() procedure for every pls_integer subtype. The functions and procedures are almost identical except the type. How I can eliminate ...
13
votes
1answer
337 views

What are the alternatives to subtype polymorphism in scala?

I'm interested to know the complete set of alternatives to subtype polymorphism in scala.
6
votes
1answer
391 views

How to create custom project that inherits from c# using MPF?

Using Visual Studio's Managed Package Framework, how can I inherit from C# so I can have C# property pages and C# project items? I've tried making a flavored project, but it was limited in terms of ...
4
votes
2answers
103 views

Restrict class to trait and structural subtype in Scala

I need to restrict a Scala method parameter so that it implements both a trait and a structural subtype. How can I do this? trait Foo // ... def someMethod[A <: Foo xxx { def close() }](resource: ...
4
votes
2answers
102 views

Java: compile-time resolution and “most specific method”

The overloaded functions compute1(), compute2(), and compute5() cause compilation errors if you try to use them below: package com.example.test.reflect; class JLS15Test2 { int compute1(Object ...
3
votes
5answers
62 views

Java inheritor array construction and covariant return

(Title sounds a bit too fancy but I couldn't find a match so we'll hope it's descriptive.) I have a working piece of code as follows: @SuppressWarnings("unchecked") public static Copyable[] ...
3
votes
5answers
94 views

In what ways are subtypes different from subclasses in usage?

A subtype is established when a class is linked by means of extending or implementing. Subtypes are also used for generics. How can I differentiate subtyping from subclasses?
3
votes
2answers
989 views

MD5 in Oracle (DBMS_OBFUSCATION_TOOLKIT.MD5)

I'm trying to compose a function to obtain MD5 hashes from bits I've gathered here and there. I want to obtain the lower-case hexadecimal representation of the hash. I have this so far: CREATE OR ...
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 ...
3
votes
5answers
657 views

Subtyping database tables

I hear a lot about subtyping tables when designing a database, and I'm fully aware of the theory behind them. However, I have never actually seen table subtyping in action. How can you create subtypes ...
2
votes
1answer
58 views

Difference between isSubtype and isAssignable for TypeMirror

In the documentation for the utility interface Types, of which an instance must be made available to an annotation processor for Java SE 6 or 7 by the compiler, there are two methods which interest me ...
2
votes
2answers
151 views

Scala related trait, abstract types

I have 2 related traits. Dao will be used be a class and DaoHelper will be used by Dao's companion object. I would like trait Dao to be able use functions defined in DaoHelper, the only way I could ...
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
7answers
63 views

When should or shouldn't I use a more general variable type for referencing my object?

There are 2 classes A and B, B extends A. What is the difference between A a = new B(); and B b = new B()? Both create the object of class B. What is the difference?
1
vote
4answers
256 views

expected constructor, destructor, or type conversion before '&' token ERROR

My files: cpu_add.h #ifndef CPU_ADD_H #define CPU_ADD_H double add_double_double(double a, double b) {return (a+b);} double add_int_double(int a, double b) {return ((double)(a)+b);} int ...
1
vote
1answer
269 views

PAGECURL ANIMATION SUBTYPE

I know this has been asked a thousand times and people will say that the @pagecurl will get rejected. I tried reasoning with the client but they insist they want to push the app with that function ...
1
vote
2answers
182 views

Using Sub-Types And Return Types in Scala to Process a Generic Object Into a Specific One

I think this is about covariance but I'm weak on the topic... I have a generic Event class used for things like database persistance, let's say like this: class Event( subject: Long, verb: ...
1
vote
2answers
70 views

Accepting a limited set of subtypes in a method argument

This is with C# and .net 3.5 Let's say I have the following method: myMethod(myBaseClass mbc) In my project, all the following classes inherit from myBaseClass. ot1:myBaseClass ot2:myBaseClass ...
0
votes
4answers
42 views

Dynamic dispatch in Java

Suppose I have a class A which defines a method bar(). The method bar() calls another method foo(). I then extend A in B and override foo() and do not override bar() (so it gets inherited). Which ...
0
votes
2answers
85 views

How do you instantiate a Map.Entry<K, V> array in Java? [closed]

Possible Duplicate: Java Generics: Array containing generics I have a Java class which contains 2 methods which add and remove an element from an array. To make it generic it takes a ...
0
votes
1answer
163 views

Subclasses and return types

let's say I wanted to have something like the following: abstract class PDF[T, S <: PDF[T, _]] { def fit(obs: Seq[T], weights: Seq[Double]): S } class PDFGaussian(val mu: Double, val Sigma: ...
0
votes
3answers
146 views

subtyping polymorphism in c++

I have this program in c++. ref2.h : #ifndef REF2_H #define REF2_H #include <iostream> using std::cout; using std::endl; int add_int_int(int a, int b) {return (a+b);} class IntClass; ...
0
votes
3answers
190 views

Interfaces, inheritance and subtyping

I have the following JAVA mess that is very unclear to me: a generic Interface with two generic Types A and B, such as AIter<A,B> another generic Interface with an additional generic Type ...
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 ...
0
votes
1answer
43 views

Obtaining Added Item Information with vsx

I just created an event handler to determine when a new item is added to the solution explorer; however, I'm unable to obtain the properties of the item(Name, etc). In the event handler method, I ...
-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 ...