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 ...

learn more… | top users | synonyms (1)

0
votes
2answers
63 views

C# Inheriting properties from parent interface

I'm trying to mock up a data access library for Neo4J in .NET 4.5. I am using interfaces to define each command to the database. Given: public interface IBaseRequest { HttpMethod ...
1
vote
7answers
65 views

Implementation of Interface methods is required or not

I have an interface like below. I got this default code in Eclipse. Confused, Why the "@Override" attribute is coming? Is there any other TOP level default interface is available where we have ...
-4
votes
1answer
41 views

Real Time application of interface in java [closed]

What is real time application of interface??? we can make implemented class without defining interface also. for eg. we have one interface animal and and have some method like eating etc. and we ...
0
votes
1answer
18 views

Custom [admin] interfaces with Django?

I've been playing around with python/django for the last couple of weeks and whilst the overall structure and makeup of the framework is making sense I'm rather confused on how to create advanced ...
0
votes
1answer
47 views

LINQ against two different data contexts using interfaces

This is the continuation of my question asked here. Brief summary: I have two different databases with minimal changes (one table and foreign keys to it are missing in one table) and I want my ...
0
votes
1answer
9 views

How to interface a scanner to a google spreadsheet?

I am trying to build a Asset Manager. I am using a scanner or a mobile device to scan the barcode which is the asset id. My requirement is as follows: 1) When the scanner scans for the first time the ...
0
votes
3answers
28 views

Objective-c: The xib loaded from code is not the same on the project

I have problem with my project. I have an interface file which has two buttons but somehow when i run the application the interface has only one button. I know the interface is not the same the one on ...
0
votes
0answers
41 views

virtual destructor vs pure virtual destructor [duplicate]

Are some difference between virtual destructor and pure virtual destructor? In my design I always used pure virtual destructor: class MyInterface { public: virtual ~MyInterface() = 0; virtual ...
1
vote
3answers
48 views

inheriting from multiple classes?

I have the following hierarchy of interfaces and implementations in Java: A <- B <- C A_impl <- B_impl <- C_impl where A <- B means B extends A, and A_impl implements A, etc. Now I ...
-6
votes
2answers
67 views

Why one Comparable class and one Comparable<T> interface? [closed]

I am confused with the two versions of Comparable(class) and Comparable<T>(interface)? Why there are two separate versions in Java? Comparable is a Class here: Comparable[] people = new ...
1
vote
1answer
70 views

Implementing IUnknown in C#

I've been looking for an example of how to implement IUnknown in C#, but haven't found any decent references or solutions to this. Should it be as simple as... public interface IUnknown { UInt32 ...
0
votes
1answer
32 views

Interfacing static and non static methods

Ok so my problem is trying to interface static and non-static methods, an example of both. Regards. Examples: Codeigniter AR(non-static) and php-activeRecord(static) Interface interface ...
0
votes
3answers
43 views

Pass Variables from Jquery/Javascript to a c# application

I am a newbie to interfacing j-stuff to c# applications. My problem is that on web interface the user fills 3 text boxes and presses the go button. The javascript that is doing that is below: ...
1
vote
2answers
32 views

“XXX is an interface and jaxb can't handle interface” error in liferay context only

I use CXF 2.7.5 to call Web services. I generated the client classes with wsdl2java program (in command line MSDOS and in maven). I must use xmlbeans databinding because with jaxb (default ...
7
votes
1answer
86 views

How to return a concrete type when implementing a generic interface

I have an interface that will be implemented by several different classes, each using different types and return types. The return type can be inferred from the method generic type, but I'm having ...
0
votes
1answer
22 views

How can I make my multicast packet to reach a particular virtual interface?

I need clarification on how to receive a multicast packet on a particular virtual (VLAN) interface. I have send multicast data from one VLAN interface (eth0.10), I need to receive it on other machine ...
0
votes
1answer
28 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
76 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
139 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
39 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
63 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
67 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
42 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
72 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
85 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 ...
9
votes
6answers
292 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
21 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
20 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
26 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
9 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
61 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
108 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
80 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
62 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
32 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
21 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
66 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 ...
2
votes
0answers
55 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
42 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
35 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
76 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
15 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?

1 2 3 4 5 123