Tagged Questions
0
votes
1answer
44 views
Grails command that extends another command bug
I'm having a problem with Commands in Grails when I extends one generic Command to reuse it's custom validator.
When I clean the grails project, it loses the reference to the extended custom ...
3
votes
2answers
40 views
Android Java: best practice for common code in overrides for all Activities
I'm not entirely sure whether the following approach is a good or terrible one.
It would be great if someone more experienced could add his/her 2 cents :)
I have an app with lots of Activities.
In ...
0
votes
1answer
27 views
Best way to add functionality to JAXB classes in NetBeans [closed]
what is the best way to implement some additional methods on JAXB generated class in NetBeans?
Actually, I copy generated classes into another package and modify it. But what if my xml schema will ...
0
votes
1answer
50 views
Creating a custom multi-key HashMap
I have been trying to create a custom HashMap which contains 2 keys.
The user creates an object of my class with two parameters K and V. The class is made of 2 HashMaps: natively extended <Integer, ...
1
vote
4answers
53 views
Objects and casting java
I was given this statement for homework.
Mammal pet = new Dog ();
Samoyed s = pet;
we were given a diagram like so:
Animal ---> Vertebrate ---> Mammal ---> Dog ---> Husky, Samoyed, Beagle
my ...
-2
votes
0answers
31 views
Creating a singleton by extending an existing class?
I'm wondering whether it is a bad idea to create a singleton not by modifying an existing class, but by extending an existing class and just putting the singleton front in the new singleton class. I ...
0
votes
2answers
38 views
Preventing Android dialog from extending activities
How can I prevent my dialogs from extending activities?
When I create it in my main activity it doesn't dismiss itself when I click "Okay", which creates a new activity. The new activity that is ...
1
vote
1answer
53 views
Finding extender from abstract class in static method
I have a set of basic classes,
ei:
public class Item{
}
I want to add feature to extend basic class with Storable ability:
new parameter to keep data from storage in an object
new static method to ...
-1
votes
6answers
128 views
Inheritance in Java: Extending another class when I've already extended one
I have to extend class A's variables into Class B. For that I have to write:
public class B extends class A
But in my case, the place is already taken up by "extends javax.swing.JFrame". It looks ...
0
votes
1answer
52 views
Add extended control to form - NetBeans
I'm new to Java, so need a little bit help:
Programming in Java I use NetBeans. So, in making forms, I use already existing swing controls just placing them on the form. But, for example, I want to ...
2
votes
2answers
122 views
Java extends Thread not working but implements Runnable does. I don't see why?
I can't believe this is giving me trouble.
My test on extend Thread does not work and my implement Runnable does. I have compared to working thread code I have written in the past and cannot see ...
1
vote
4answers
151 views
LinkedList - loop not working - Java
I am required to write a method that returns a number - the amount of times an element is found in a linked list. So far I have;
package Question4;
import net.datastructures.Node;
public class ...
2
votes
3answers
84 views
Using Sub Abstract Class in Java
I Have this class:
public abstract class Test {
public abstract class SubClass extends Test
{
}
}
I need to access it like this
public class JavaApplication1 extends Test.SubClass {
...
0
votes
4answers
159 views
Instantiating abstract classes in Java: Why does this work? [duplicate]
Possible Duplicate:
Interview : Can we instantiate abstract class?
I have an abstract class with all its methods defined (i.e. there are no abstract methods contained within it) like the ...
0
votes
6answers
134 views
extending Java class twice [duplicate]
Possible Duplicate:
Alternative of Multiple inheritance in Java
Multiple inheritance in Java?
i have a code like so:
public class myApplet extends JApplet
im interested in adding ...
0
votes
2answers
71 views
Java: how to create and run class structure?
I have to create following class hierarchy.
I started this way:
public class Student {
private String name;
private int credits;
public Student(String name, int credits) {
this.name = ...
3
votes
3answers
64 views
Java - extend an interface
Is it correct to extend an empty interface? I just need to have a method (EventPlayer) with a parameter (EventCLass myEvent) that could be one time a class and the next time another class.
public ...
1
vote
0answers
84 views
Extending a Class by Adding a Button
This is probably an elementary question. However, I have completed reading the 12th Chapter of Java Programming for the Absolute Beginner and have approached the Challenges section. I cannot quite get ...
0
votes
1answer
188 views
Java Jung Graph Editor
I have adjacency matrices stored in a database and I would like to interactively edit them with the Java Jung graph package. Interactive graph editing can be seen in the sample GraphEditorDemo. I have ...
0
votes
1answer
110 views
How can I use a method in a different class?
I'm working on a project, and I need some help here. I have an AnimalWorld that extends World, and an Elephant class that extends Turtle. In my Elephant's act() method, I want to use a method ...
0
votes
1answer
77 views
Extends from Robot handle awtexception
Very simple question: I hava a class wich extends from java Robot class, however I have an error in my IDE (netbeans), that I haven't handled the AWTException for the my class. how can I fix this?
My ...
0
votes
1answer
261 views
extend Java class with groovy
I have a java class (named A) that needs to be executed by groovy. This class is standalone. I want to dynamically extend it with the class B.
The code for class A:
public class A {
public void ...
1
vote
2answers
112 views
Initiating instance variables in a class that extends a generic class
I have a generic class "SimpleList" (excerpt):
public abstract class SimpleList<T> {
protected List<T> list;
public SimpleList(List<T> list) {
this.list = list;
}
}
...
0
votes
2answers
299 views
extending Java's Linked List for personal use
So I need a linked list to store multiple variables, so I want to use my hand-made Linked List ADT, but also want Java's Linked List's Comparator Sort from collections.sort();
So I tried and edited ...
0
votes
1answer
142 views
Java Extends tag giving “symbol not found” error
I currently have a Java program with a functioning Java class. I've created instances of that class manipulated them and printed them without any issues, however when I try to extend the class from ...
0
votes
1answer
173 views
Java, create line object extending JComponent
I'm programming a java applet.
In this applet I need to draw on an image some markers (as a red circle) and some lines.
I have succesfully implemented the markes, as an extension of JComponent, and ...
0
votes
0answers
39 views
Extending Java with jar that can be used from an Applet
I want to extend Java with Classes I made myself so that they can be used from Java Applets. I have tried dropping JAR files in the lib and lib/ext folder but they still ain't globally visible.
EDIT: ...
7
votes
3answers
523 views
Package name alias or nickname
Is it possible to create a nickname for a package name, that I can refer in xml file?
I don't want to write the whole package name e.g. com.example.go.deck.today instead can I create an alias and ...
0
votes
3answers
72 views
Having some issues with Constructors?
I have a problem in constructing a class,
The following code throws an Exception
public class Agent extends Board{
private static boolean arrow;
private static boolean backmove;
...
1
vote
1answer
134 views
How to make my root jaxb generated class extend my own class
I want my xjc generated root class extend one of my class A, which is nothing but a wrapper around the root class. Can i do that without modifying the xsd file (how to force schema compiled classes to ...
1
vote
2answers
511 views
Want to create a generic AsyncTask - how?
In my Apps I usually have lots of AsyncTasks. They all look the same thus share the same design. So I would like to optimize this a little bit further and create a generic MyAsyncTask from which my ...
0
votes
3answers
118 views
Java architecture issue for extending instances (need for a pattern recommendation)
A service from external API which I am not allowed to modify returns me
MyClass instance = ServiceUtil.getThing();
I would like to extend this returned class and Add/Override a method but leave ...
0
votes
2answers
73 views
Sharing a field method with class
I have a class with objects
Now i want to call a function from Box and Toy object from outside of the Container class
class Container
{
Box box1 = new Box();
Toy toy1 = new Toy();
public ...
0
votes
2answers
89 views
I want to extend ArrayList to implement but cannnot access to elementData private var
I would like to know how can I override indexOf() method in a subclass of ArrayList. I need to use the same accessing that super to the private transient elementData var.
How can I solve my design?
...
1
vote
2answers
126 views
Java - Setting Parameter as Object which both extends one Object and implements an Interface
I was wondering if it was possible to set a parameter to a method as an Object, which must be a extend one class and implement another. Here is an example: Let's say I have a class called ClassA and ...
0
votes
6answers
198 views
Java Extending a class and setting values
Animal Base Class
public class Animal
{
protected String pig;
protected String dog;
protected String cat;
public void setPig(String pig_)
{
pig=pig_;
}
public void setCat(String cat_)
{
...
7
votes
3answers
655 views
implements vs extends in generics in Java
Can someone tell me what the differences between the first and second codes are?
MaxPQ stands for priority queue, which is a collection of "Key" objects that can be compared with each other.
Code 1:
...
2
votes
3answers
73 views
How to tell what an object extends externally in java
Hello I need to know if there is a way to find out what an object extends in Java.
public void function(Obj obj)
{
// ...
Is there a way to find out what obj extends? or if it extends anything?
...
16
votes
2answers
1k views
In Java, can anonymous classes extend another class?
Code like:
protected Interface1 varClass1 = new Interface1() {
But I would also like that this anonymous nested class also extends the class Base, something like:
protected Interface1 varClass1 = ...
0
votes
2answers
113 views
Can I place extended objects in a list in java along with the object it extended from?
So I have two objects A & B, and B extends A.
Is it possible to have both objects in the same ArrayList?
Or what will I have to do to be able to do this?
-1
votes
1answer
189 views
How to retrieve information from one class to another
I have the following code to retrieve information from a text box to another within the same class
btnAddItem.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) ...
1
vote
2answers
268 views
How to extend a java class in Jython?
I am trying to extend Plot.java in a Jython class and use "setSize() and setButtons()" methods in Plot.java in Histogram.py subclass. However, I cannot do so I get the error that global variable ...
0
votes
5answers
60 views
Java extends strange output
I have written a small program in Java, a there is something I just do not understand.
Program that I have wrote has 3 classes kingClass, masterClass, and workClass. workClass extends masterClass.
...
1
vote
4answers
430 views
Overriding a variable when extending a class with a different type in Java
I want to extend a class as shown in the below example.
While extending, I just want to change the type of one variable; declaring the same variable name with a different type will do this?
class ...
2
votes
1answer
312 views
How to make object returned by java.lang.reflect.Proxy.newProxyInstance() to extend other class
newProxyInstance(ClassLoader loader, Class<?>[] interfaces, InvocationHandler h);
Returns an instance of a proxy class for the specified interfaces that dispatches method invocations to the ...
2
votes
3answers
3k views
Extending a java ArrayList
I'd like to extend ArrayList to add a few methods for a specific class whose instances would be held by the extended ArrayList. A simplified illustrative code sample is below.
This seems sensible to ...
0
votes
3answers
312 views
Not getting the correct values for variables in extended class
Just doing a quick edit up at the top of my post.
The question is if i extend a class and both classes have the same variable why is the extended class getting the original classes value.
This has ...
2
votes
1answer
177 views
need JTextArea (or similar) with indented first line
How can I extend JTextArea to indent the first line? I would like to display some non-editable things in the upperleft corner area of the text area (e.g. some icons). These items would be the height ...
1
vote
7answers
738 views
Extending a class in java but it wont inherit properties from the superclass
ok so on my program i have some labels (which are in an array and stuff) anyway i want to add my own property to the inbuilt Label class, anyway so i tried extending it
public class LabelMod extends ...
2
votes
2answers
1k views
Extending a EditText in Android. What do I do wrong?
So I'm trying to get a grasp of using custom controls in Android. But my app crashes on trying to create the activity. Here's the code:
package com.myApp;
import android.content.Context;
import ...



