Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
132 views

Java overriding two interfaces, clash of method names

I am implementing the Map<V,K> and the Collection<V> interface in one class, but the remove(Object) method occurs in both interfaces, therfore eclipse shows me some errors. The return ...
4
votes
6answers
108 views

java.lang.Number doesn't implement “+” or any other operators?

I'm creating a class which is supposed to be able to be used with an array of any type of number (float, int, etc), so here is one method I have: // T extends Number public synchronized T[] average() ...
3
votes
2answers
321 views

Interface Limitations in VB6

I'm trying to implement (i.e. implement an interface) a class in VB 6, but I'm getting this error: "Compile Error: Bad interface for Implements: Interface contains data fields". So I'm wondering if ...
2
votes
2answers
69 views

Two ways when implement a class

I don't know what real difference between two type of using when I want to implement a class: (I run and see that they are same result) first example: implement Renderer directly to class. second ...
2
votes
6answers
98 views

First time implementing a java interface, can't get a successful compile

I need to implement a bag data structure using the interface java.util.Collection. I'm not asking for help on the actual implementation of the data structure. I just can't get my program to compile. I ...
2
votes
2answers
40 views

Compare static addressing and import for extends/implements

Is there any difference between using public ClassName extends some.package.Class implements another.package.Interface {} and import some.package.Class; import another.package.Interface; public ...
2
votes
1answer
130 views

Java implements webbrowser: does this save to browser cache, and can you serve content directly?

Still trying to decide which application will suit : current options JxBrowser vs SWT widget. Java application implements a webbrowser control like JxBrowser or SWT browser control. Both of these ...
2
votes
3answers
397 views

public interface ITMark<E extends Comparable<E>>

now i want to implement this interface with the class. so how should i do it? public class TMark<E> implements ITMark{} is this the way but throwing errors I am getting the following: ...
2
votes
2answers
195 views

How to identify classes that implement an interface?

I have a VB6 EXE project with a large amount of classes - everything compiles to an EXE, there are not COM DLLs built. Some of the classes implement the IDataProcessing interface. How can I ...
1
vote
1answer
36 views

Android: Different two uses of Renderer

I use two ways of Renderer to draw a triangle. One is work and one is none. Here is my two solutions. First Solution: cannot work when run. I emplements Renderer (You should see the line ...
1
vote
5answers
119 views

Java extends alternatives

I'm trying to make a model of our universities Course management system (for the course). I stumbled upon a small limitation of extends, that is, it's impossible for a certain class to extend two ...
1
vote
5answers
147 views

Extending an inner interface?

I got a simple question: Why does Eclipse scream about implementing these two interfaces? public abstract class Gateway implements IPlayerity, IItemity { public interface IPlayerity { ... } ...
1
vote
2answers
135 views

Parent and child classes implementing a common interface, repeatedly

Today i found in my codes what appears to be a child class implementing an interface that the parent class is already inheriting. May i know if this has any adverse side effects or intentions, as i ...
1
vote
4answers
184 views

How to pass object into implements and pass out the local object?

How do I pass a object to an implement and pass the local object to object that is outside? I think the SwingUtilities.invokeLater is nessasary for a Swing object , right? Sensors sens = new ...
1
vote
1answer
715 views

Implementing an OnClickListener?

I am trying to do something similar to that of the android lock screen pattern. I have a class that extends a view that I create multiple instances of. These appear on the screen all at once. I need ...
0
votes
2answers
35 views

Implement a ImageView to a SurfaceView

I have one small question... Is it possible to implement a ImageView inside a SurfaceView, or to create a ImageView inside the SurfaceView And if so could someone point me in the right direction on ...
0
votes
2answers
65 views

Convert between types based on the implementation of the same interface

So, I'm a Java Rookie with tough homework... We have to build a linked list which should store Elements of a given interface (Sortable). The interfaces to build on is: public interface ...
0
votes
1answer
47 views

extending serializable geopoint - can't read object back in

I need to serialize a list of GeoPoints then read them back in. I searched the web and found out that I can implement my own GeoPoint and implement serializable. It works and I can write the object to ...
0
votes
2answers
84 views

List all classes in a package that implements a given interface

I want to list/enumerate (at runtime) in my Java program all classes that implements a given interface, and retrieve the class name. Is it possible ? How can i do ?
0
votes
1answer
64 views

Java class extension [closed]

I'm a bit confused on what Java classes inherit with "extends". I have a class called "Shape", and multiple classes such as box, circle. The box, circle, etc. all have three variables in common. The ...
0
votes
1answer
29 views

Create Object in Splash Screen to be used later

I read from a RSSfeed and create an object of that feed. As this takes time I want to have it read the feed during the spash screen. After the splash screen loads the Main Menu appears which extends ...
0
votes
3answers
53 views
0
votes
2answers
152 views

implementing Comparable interface from abstract class with concrete subclasses

package geometricobject; public abstract class GeometricObject implements Comparable { private String color = "white"; private boolean filled; private java.util.Date dateCreated; protected ...
0
votes
2answers
35 views

Restrict property type

Good day, I have a class which represents a collection. The collection has a property of type Type which allows you to specify the data type of each element's meta data object. Each time an element ...
0
votes
3answers
120 views

__autoload detecting and including interfaces

I am using __autoload in my script to include classes as needed. My script uses cues in the class name to find the file containing it. If it ends in model it is in the model directory, controllers ...
0
votes
3answers
119 views

Declare C# Class That Implements a Generic Interface

Suppose I have an empty interface class IBaseInterface which is used only to "label" implementing classes as being interfaces themselves. Is there any way to do something like this? For example: ...
0
votes
0answers
661 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
1answer
50 views

keep getting an ionotseriaizableexception, what did i do wrong?

So, i have a class which has the following attributes private String name; private int counter; private DateFormat df; private DecimalFormat def; private ArrayList<Bike> bike; static String[] ...
0
votes
6answers
293 views

Implement an interface

Why do you have to override all methods of an interface? For instance if I have public class Foo extend JFrame implements ActionListener, KeyListener { foo(){ } @Override public ...
0
votes
3answers
261 views

Force a dynamically loaded class to extend or implement an interface

Anyone know if it's possible in PHP to force a class to extend or implement an interface without the child class having to declare it? Example: interface Requirements { public function ...
0
votes
2answers
128 views

what does following Java line of code means

I found this class in magnolia CMS source which uses class definition I am not yet familiar with. Could anyone having knowledge about usage of the following code style explain to me what exactly this ...
-1
votes
2answers
45 views

Why does my methods just skip?

I have two questions - I'm a beginner in Java but have a huge java project :( If I implement a class (which is an interface that has two void methods) and I try to write another method in my class, ...
-1
votes
0answers
79 views

how do I run this java class? [closed]

So I have quite a lot of complexed java in this program. I'm trying to write a class which uses the program to work out my answers but I'm hit with this block!! I created a class: class ...
-3
votes
1answer
122 views

Is it possible to extend more then one abstract class?

Is it possible to extend more then one abstract class? I'm trying to convert the java bytecode library in C# I figured out in the original java bytecode library it extended 2 interfaces or in my ...
-8
votes
1answer
63 views

Java Generic on Class [closed]

How to run a anonymous method from class . Like I have 3 different panels which have multiple method but those panel implements from a interface so all have same methods. Now if I want to call those ...