The implements tag has no wiki summary.
0
votes
0answers
31 views
Implement existing Activity(within there extends/implements) in Fragments (Sherlock)
I have developed an app with some activities. Now I would implenent a Navigation with fragments and Sherlock.
I found a lot of examples, but I don't know how to implement my exiting activities.
Since ...
3
votes
1answer
167 views
Delphi interface implements
I would expect that the reference counting should work on the outer aggregating object in an interface implementation.
If I can refer to another example: Clarity in classes implementing multiple ...
2
votes
5answers
82 views
Why are interfaces useful? (OOP)
I already know the fundamentals of the implements and interfaces. I don't understand when to use an interface. What is the requirement to have an interface?
Example:
/// Interface demo
Interface ...
0
votes
3answers
86 views
Implementing a java interface
I have an interface that I want to implement that looks like this, but with more methods. There is just one here for example:
public interface List{
public void add(int position, Album album);
}
...
0
votes
0answers
53 views
Update Fragment UI via custom interface
While looking for a way to update a fragment from a broadcastreciever located in the parent activity. I came across this tutorial:
...
-1
votes
1answer
52 views
Java: How to extend a object that uses generics but limit the type
I'm sorry but i'm not sure if i used or am using the correct terminology, but basically i want to create a class called EntityList that extends ArrayList but i want it so that the interface I created ...
0
votes
1answer
32 views
Implementing (extending) Path
I'm trying to create an object that would be able to deal with the file managment in my program.
Path interface has almost all methods I need, but I would like to add some custom ones. If I implement ...
0
votes
3answers
92 views
How to implement constructor for extended class
This works:
class ABean implements A {
protected String field1;
...
protected String fieldn;
public String getField1() {
return field1;
}
...
}
class BBean extends ABean {
public ...
0
votes
2answers
98 views
Using abstract class that implements an interface (Java)
I have this interface,
public interface IAnything {
void m1();
void m3();
}
And two abstract classes implementing this interface:
public abstract class AbstractThing1 implements IAnything {
...
0
votes
2answers
123 views
How can write an interface? [closed]
This is my calculator class .
package caculator;
import java.beans.PropertyChangeSupport;
import java.util.LinkedList;
import java.util.Queue;
public class Calculator {
public enum Operation {
...
-1
votes
4answers
114 views
extends class and implements interface in java
interface Bouncable{ }
interface Colorable extends Bouncable{ }
class Super implements Colorable{ }
class Sub extends Super implements Colorable {} // Ok (case -1)
But,
class Sub implements ...
0
votes
1answer
79 views
Overriding in PHP?
In other OO languages like java we can override a function,possible using keywords/annotations like implements,@override etc.Is there a way to do so in PHP.I mean, for ex:
class myClass {
public ...
3
votes
1answer
107 views
SQLiteDatabase 'does not implement interface'
Getting this error when I use SQLiteDatabase as a Closeable
I've got a sample project to recreate it:
https://github.com/blundell/SQLDatabaseError
With a class that extends SQLiteOpenHelper:
...
2
votes
2answers
53 views
Workaround interface implementing another interface
I'm trying to define some properties for objects in a game, so I use interfaces to specify them.
I've created a Interactable interface, but then I want to create a Eatable interface, which obviously ...
1
vote
1answer
67 views
Very Advanced Method/Constructor (Java) - Accepting Real Polymorphic Arguments - Sintax
Is there any way to declare a polymorphic constructors? (please it is not overloading!).
I want to specify an argument that is isntanceof 1 class and 1 interface but I DONT WAN'T to create a new ...
1
vote
1answer
67 views
Android - Won't allow me to implement a interface
Very strange error. I'm trying to implement a simple interface in a non-activity class within my android application. However, I get a run-time error. If I remove the implementation, the code works ...
-4
votes
3answers
117 views
How would I go about implementing this Java interface?
I am currently in the design mode for this problem:
Implement the Speaker interface that is predefined. Create three classes that implement Speaker in various ways. Create a driver class whose main ...
4
votes
6answers
99 views
Is an interface part of the Object hierarchy?
Please find the code snippet below which explains the question.
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
I ref = new B();
ref.equals("");
}
}
...
0
votes
1answer
85 views
Shapes, Drawable“Shapename”, Shape Inheritance and Interface
This is my last exercise in my headfirst book but when i run the application the shape is not being drawn, I'm pretty stumped cause there are no errors.
public class ShapesDriver extends Frame{ //You ...
1
vote
1answer
104 views
How to implement IDataReader without retyping all the methods?
I have a class that implements IDataReader and the needed functions are written, but I get an error message stating
Class 'CSVDataReader' must implement 'Function GetBoolean(i As Integer) As ...
0
votes
6answers
424 views
java interface with multiple implementation classes having different signature
I am creating an interface say 'Car'
public interface Car {
public void drive(int Speed, int Gear ); // for cars which have gears
public void drive(int Speed); // for cars which do not have ...
1
vote
1answer
147 views
I want to add my own methods to a few Dart Classes
My attempt to simply 'Extend' the Map class fails because List is an interface and cannot be extended but must be implemented.
The goal was simply to add a few methods on top of some existing class ...
0
votes
2answers
470 views
Implement OnClickListener to make Show Context Menu With Short Click not Long Click
I have code like this :
public class ListConActivity extends Activity {
private String[] Distro = { "Ubuntu", "Arch Linux", "Mandriva",
"Open Suse", "IGOS Nusantara", "Linux Mint", ...
0
votes
4answers
1k views
Since a class in Java cannot extend multiple classes. How would I be able to get by this? [closed]
I have two classes that need to extend one class. I am getting a compiler error since this cannot happen in Java. I know that you can implement as many interfaces you want to in Java but can only ...
3
votes
4answers
128 views
C# and ReSharper: Checking an object's type
I have a class implementing an interface as follows:
public class Database : IStore
In another class I have the following member variable; and an instance of Database is dynamically assigned to it ...
0
votes
1answer
135 views
Java Thread does not terminate
I am trying to animate a triangle when two triangles have been clicked twice. As soon as I click them twice triangle 0 starts moving until moveX reaches 20, while(moveX < 20), but then it doesn't ...
-1
votes
2answers
64 views
Declaring an object that implements an interface
I'm trying to declare an object which must implement a specific interface.
I thought the following would work in Java as it does in some other languages but I'm at a loss here:
Class<? implements ...
1
vote
1answer
92 views
Is textwatch a interface?
when i implements textwatcher, a error occur
Syntax error on token "implements", extends expected
my code is
import android.text.TextWatcher;
public interface Testing implements TextWatcher{
}
...
0
votes
4answers
73 views
Java Impementing an interface. With additional functions
Hello ive added two new functions to the implementation of an interface.
this is the implementation file...
import au.edu.uow.Collection.Album;
import java.util.ArrayList;
public class CDAlbum ...
0
votes
4answers
182 views
Java Implements interface
this is my attempt at implementing an interface.
im getting the following error
javac MyCollection.java
./au/edu/uow/Collection/DVDAlbum.java:6: cannot find symbol
symbol: class Album
public class ...
2
votes
7answers
267 views
JAVA - Return list of interface
I have this problem, I'd like to return a list of interface and implementation class only after the if block.
public interface Lotto { }
public class LottoImplSecond implements Lotto { }
public ...
-6
votes
1answer
80 views
Java : How do we benefit from services while implementing an interface? [closed]
I still can't understand how it works when I implements an interface to benefit from a service such implementing the class Collections to be able to sort, compare,.. Because all what I see in the ...
5
votes
2answers
348 views
How does a WCF proxy implement ICommunicationObject if it's methods aren't visible?
How does a WCF channel (created via ChannelFactory) implement ICommunicationObject, but doesn't expose the Close() method, for example, unless you cast the proxy to ICommunicationObject? Does that ...
0
votes
1answer
42 views
Swiftmailer: Missing interface Swift_CharacterReader
I am trying to set up Swiftmailer to send out a personalised newsletter.
I have got most things working (I think): I have the headers and the body all set up, and SMTP authentication working. I get ...
6
votes
3answers
316 views
Scala, can't implement generic java method
I'd like to implement a java method that uses generics in scala (2.9.2). But I'm failing...
Java interface method:
public <T extends Number> void setAttribute(Key<T> key, Number value);
...
1
vote
2answers
125 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
1answer
233 views
Extending an Activity adding a callback method
I'm having a go at extending Activity to define a standard method I can callback to from an AsynchTask. Here's a skeleton code.
public class R3Activity extends Activity{
public void ...
1
vote
2answers
57 views
Why do I keep getting an [line: 75] Error:must implement the inherited abstract method java.awt.event.ActionListener?
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionListener;
import java.awt.event.*;
import java.io.*;
import java.util.*;
public class WetBulbByLocationFrame2 extends JFrame
{
...
0
votes
1answer
197 views
Nested classes and implementing interfaces in java
Although this code is from an algorithm text, I have a bit of a trouble regarding nested classes and interfaces - actually, 90% of my confusion arises from how this code implements the interface. ...
7
votes
3answers
653 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:
...
0
votes
3answers
192 views
Multiple Inheritance with Base Class and Interface having same function with different return types
I have written a class which is a base class of Class A and implements an interface of Class B.
Now my compiler is giving a wierd kind of error saying that "The return types of functiona from Class A ...
3
votes
8answers
131 views
Java - Interface Methods
Just playing around with interfaces and I have a question about something which I can't really understand.
The following code doesn't run, which is the behaviour I expect as the interface method ...
3
votes
3answers
3k views
Interface extends another interface but implements its methods
In java when an interface extends another interface:
Why does it implement its methods?
How can it implement its methods when an interface can't contain
method body
How can it implement the methods ...
1
vote
4answers
86 views
How to override method in wrapped class?
I have the following classes defined...
class Class2 implements ICommon {
....
ICommon wrappedClass;
//delegate interface methods to wrapped class
}
class Class1 implements ICommon {
...
0
votes
2answers
77 views
Why won't my interface typed objects preform methods that are not declared in the interface?
Here is the code I'm having problems with:
The interface:
public interface anInterface {
void printSomething();
}
Class that implements the interface:
public class aClass implements ...
0
votes
2answers
39 views
Java forcing interface on 3rd party class through anonymous class
I've got some 3rd party beans that have method signatures that fit quite well onto an existing interface but it does not implement the interface.
Now I would like to do something like this, which ...
0
votes
1answer
151 views
Creating Comparator for TreeSet with 2D Arrays - Java
In my Java program, I have a TreeSet with 2D Arrays in it. However, I don't want any duplicates in it, so I decided to create a class that implements Comparator in order to use the TreeSet's ...
0
votes
2answers
214 views
java - implement interfaces for threads
I am trying to "connect" two classes together, MyJFrame and MySerialPort, using the interface SerialPortListener, but I am clueless as how to do it. The reason I am doing this is because yesterday I ...
-4
votes
2answers
4k views
What's the difference between the implements & extends keywords in Java [closed]
What's the difference between the following keywords in Java: implements, extends?
2
votes
2answers
104 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 ...