An interface refers to the point of interaction between components. Interfaces are applicable at both the hardware and software level. In general, an interface exposes a contract without exposing the underlying implementation details. In Object Oriented Programming, interfaces define abstract ...
0
votes
1answer
27 views
Executing a process and getting caller's interface
Its better if I describe this using code. I have the following interface:
public interface IMyInterface
{
void DoSomething();
}
I have two Windows Form applications, called MyFirstApp and ...
1
vote
3answers
73 views
Have a compatible interface without inheritance
I plan to implement log4net later in my application but it is currently not possible. There will be a soft migration to newer technologies but it takes time. Therefore I have to use a proprietary log ...
3
votes
2answers
126 views
Interfaces polymorphism in Delphi
I have two interfaces one deriving from antoher:
type
ISomeInterface = interface
['{5A46CC3C-353A-495A-BA89-48646C4E5A75}']
end;
ISomeInterfaceChild = interface(ISomeInterface)
...
1
vote
0answers
38 views
Avoid empty interfaces and classes vs. easy code and readability
I am working on a hobby-project of mine and am in a bit of a dead-end. Let me explain the situation and how I came to my dead end
I am trying to create a complex questionnaire system to help my ...
0
votes
2answers
58 views
List of different objects that implement an interface [closed]
I saw something similar to this using inheritance but I want to use an interface
I want to create a single arraylist consisting of different objects.
ArrayList containing the following objects ...
5
votes
2answers
62 views
Async/Await in multi-layer C# applications
I have a multi-layered C# MVC4 web application in a high-traffic scenario that uses dependency injection for various repositories. This is very useful because it is easily testable, and in production ...
0
votes
0answers
28 views
Assignment of implementation class of two interfaces inheriting
I have two interface classes (COM-like structure:
class IBase
{
public:
virtual void* QueryInterface (void) = 0;
};
class IInterface : public IBase
{
public:
virtual void DoSomething (void) ...
0
votes
2answers
50 views
PHP multiple interfaces to implement validation functionality?
I am trying to implement validation functionality on a website on which i am working.
I have created an interface entitled Validator which my classes then implement. The single function in my ...
-5
votes
0answers
40 views
Guide me in entering a ASCII value from the terminal (windows xp operating system) [closed]
If a user wants to change the temperature value (say +250 or -250) over the desktop terminal. how will be the message structure for sending this over the serial interface (RS232) among any of the ...
0
votes
0answers
60 views
Injecting interface implementation into script
How one is supposed to "inject interface implementation" into script? Say I define an interface type in TdwsUnit, like
IFoo = interface
procedure Bar;
end;
now how can I implement an function ...
-2
votes
2answers
75 views
Which is preferred: abstract class vs interface vs mixed?
I came across few design constructs in a large application:
independent use of abstract classes
independent use of interfaces
abstract class implementing an interface
interface extending an abstract ...
8
votes
6answers
271 views
Is there a safe way to use C++11 Smart Pointer and the Interface for Raw Pointer together?
I want to use C++11 Smart Pointers in new projects, and encounter a problem. Many current projects still use raw pointers as parameters in their interface and have no interface for smart pointers, ...
0
votes
0answers
20 views
MySQL - form for editing data in multiple tables
I'm writing a MySQL database, hosted on a Linux server (Ubuntu 12.04) and was intending to use OpenOffice Base on a client machine to act as a front end for data entry.
That's fine for editing a ...
1
vote
1answer
19 views
How to create an explicit interface declaration index property with CodeDOM
I am trying to create an explicit interface declaration index property. So for example:
public interface IFoo
{
int this[int i]
}
public abstract class Foo : IFoo
{
int IFoo.this[int i]
}
...
0
votes
3answers
25 views
Dealing with state in factory implementations
What pattern would one use if you have multiple factory implementations, each of which requires different state information to create new objects?
Example:
IModelParameters: contains all the inputs ...
0
votes
2answers
20 views
MBassador doesn't support interface messages
I'm using mbassador, and publishing to interfaces doesn't seem to work. Below is an sscce using JUnit. I would expect this program to print hello world, but it does not. However, if I change this ...
0
votes
0answers
8 views
ServiceContract Interfaces implemented by none-WCF deployments
I have a .NET Library that I'm using as a CORE Library for my various applications, both web and desktop.
It's made up of Classes, Interfaces, and Collections that inherit from Generic ...
0
votes
4answers
58 views
Java interface Start/Stop already exist?
Does an interface with this contract
start();
stop();
Already exist?
I have the impression to recode something classic here...
0
votes
3answers
107 views
How complex should interfaces be?
We are working in a project where there will be a shared configuration which needs to be accessed by multiple parts of the solution.
The team responsible for the Config module implemented an ...
5
votes
3answers
79 views
Abstract class and interface together?
I have a section of my code where some classes are implementing an interface.
It feels correct, but there is a little duplication among the child classes - namely 3 methods.
So this is screaming out ...
1
vote
2answers
61 views
Interface as a method's parameter
I have a problem with naming following situation
{...}
X.a;
a.addListener( new ListenerForX(){
// some interface methods
});
{...}
It is the same as:
{...}
X.a;
a.addListener( new XListener());
...
0
votes
1answer
34 views
Calling base class methods with interface reference variable
I have a base class and an interface. Now I am creating a subclass from these. If I create a reference variable of the interface type to point to an object of the child class, can I access the base ...
0
votes
2answers
28 views
Working with Interfaces in ASP.NET mvc4
I am trying to Implement an interface which has getFirstStudent method. My Idea is to make this method available to all the viewmodels which are using my partial view. In this way, I will be solving ...
0
votes
0answers
20 views
Delegate execution in Unity3d using c#
I have callbacks implements in my unity3d game in such a way that they are all nested,i.e. one callback leads to another call, whose callback leads to another call and so on upto 5 times. But the last ...
-1
votes
1answer
23 views
Paths.get()… in other words, If you follow the trail you get lost
In my code I have this instruction:
Path p1 = Paths.get("c:\\java\\");
Being Path just an interface, I was wondering what get() was doing inside. So I opened the source code in Path.class and ...
1
vote
3answers
65 views
Adding objects to an array from an implemented class
Good morning, my apologies if this question is complex/confusing. I am in an intro java course and I am having some difficulties with one of my assignments! You guys on here seem to have an answer for ...
1
vote
0answers
45 views
Java. Checking the type of an Anonymous Implementation of an Interface
I'm working with wicket, building a set a decoupled components. While using the event driven mechanism to let components communicate, I'm keeping a Set in the class "GenericComponent".
The basic idea ...
1
vote
2answers
40 views
importing final fields using interface (RIGHT/WRONG) [duplicate]
Recently I saw in somebody's code that he implements his final class variable fields inside an interface ex:
public interface commentSchema{
static final String DB_TABLE_NAME = "comment";
...
}
...
1
vote
2answers
33 views
AutoMapper and interface typed collections
I'm new to AutoMapper. Sorry if this is too simple.
This is my sample domain:
I have a Basket. It contains a list of Food.
Food is either Banana or Pickle.
I have DTOs that mirror each class in the ...
0
votes
1answer
13 views
Generic extension method with an interface contraint
I have made a generic extension method (i.e AsXml) but still want a constraint with an interface (IXmlable) on some of my classes.
As soon as I have introduced my constraint, some of my methods are ...
5
votes
3answers
81 views
Why is my interface's BaseType null?
Interface definition
public interface IPayeePayrollRunInitialPayElementData : IPayeePayrollRunPayElementData
But in my code the BaseType of my interface is null. I cannot make any sense of this!
1
vote
5answers
71 views
Can we implement an interface in jsp?
I am just preparing for interview and I just came across this question :
can we implement an interface in jsp?
If yes then how can we do it?
I tried to find the answer on many of the site but not ...
1
vote
0answers
12 views
Searching through a list and display results with Search Interface
I am trying to implement a search feature in my app where there is a list of people and the user can search for a specific person. I am having trouble implementing this idea. I am assuming I will be ...
1
vote
1answer
59 views
Is there any way of defining interfaces in Javascript? [closed]
I know, there is not any built-in support for abstraction in JavaScript. Is there any way of defining interfaces in Javascript?
0
votes
1answer
32 views
How to use an API
I'm studying Informatics but somehow I don't get that one.
I want to set up the PayPal NVP-API.
(NVP = Name value Pair).
Can someone tell me how I can CALL an API-Command?
I don't even know which ...
3
votes
2answers
43 views
Can I use @PostConstruct on an interface method?
I have a number of beans implementing an interface and I'd like them all to have the same @PostConstruct. I've added the @PostConstruct annotation to my interface method, then added to my bean ...
0
votes
1answer
32 views
How to make a table refresh in an Eclipse plugin?
I have developed an eclipse plugin, when I clicked the button a table appears on the view. However, this table does not refresh itself, when I click it again or when I a run operations on the table ...
2
votes
1answer
31 views
Rhino: Access Java interface variables in Javascript implementation
Rhino: How to access Java interface variables in Javascript implementation?
I expose a java interface for some other party to let them provide an implementation for the same in javascript.
public ...
0
votes
1answer
65 views
Convert from Class type to Reference class
This question's background can be found from my previous question.
Previous question: http://tinyurl.com/chq4w7t
I have a interface Comm with a send function:
public interface Comm
{
public int ...
6
votes
3answers
65 views
Interface implementation launches different exceptions
I have an interface
public interface DataDAO {
public void doSomething() throws Exception;
}
Lets say that there are two implementations, one that uses Database to get the data and another one ...
0
votes
2answers
51 views
public variable in an interface?
I was reading this , and noted the second point in the question:
An another interviewer asked me what if you had a Public variable
inside the interface, how would that be different than in ...
2
votes
1answer
54 views
What C# class pattern should I use for mobile client / server objects [closed]
I am developing a client / server business software system using a custom HTTP based design that works similarly to CSLA.NET. What I will be doing is creating client and server objects where client ...
0
votes
2answers
29 views
How do you find out the cost of an interface engine? [closed]
I've been looking all over the web at different Interface/integration engine websites but no one gives prices or cost of product.
Where do I go to find this out?
2
votes
4answers
90 views
What is the meaning of the underscore character in front of an Excel interface name in C#? [duplicate]
When programming for Excel in C# (using the Excel 14.0 library), there are several interfaces that have the same name, but one has an underscore in front of the name. For instance:
_Workbook
...
0
votes
0answers
24 views
How would I set up an app to run pre-compiled user code?
I would like to enable users to write code utilizing pre-defined functions that I provide for them within my android app and then have my app select and utilize their code. I currently have a single ...
0
votes
1answer
30 views
vb.net and interface implementation
I want that each class in a certain namespace implement IEquatable(Of thatClass) and its corresponding GetHashCode.
Namespace DAO
Public Class Product : Implements IEquatable(Of Product)
...
0
votes
1answer
17 views
Is it valid to instantiate windowListener interface?
WindowListener is an interface? But how instantiation is valid as per the following? We can not instantiate interface right?
WindowListener l1=new WindowListener() {
public void ...
1
vote
0answers
33 views
Make a table appear automatically in an Eclipse plugin
How make a table appear automatically in an Eclipse plugin?
I am currently developing an eclipse plugin and I created this option in the plugin that provides me a table on the "view". However, every ...
0
votes
0answers
12 views
Android : Call the interface from another project
I have project A (class A extends Fragment) & project B (Interface : OnWheelChangedListener).
In project A, I want to call the interface from project B.
Not need to use implement, i can do it :
...
1
vote
1answer
44 views
how to listen the special class initialization?
Here I want to listen some special classes initialization; when those classess initialization
I will do some actions.
Present I want to use interface or annotation, but how to implement this?

