Questions tagged [extensible]

54 questions
1
vote
1 answer

Which Classes are required for JDBC Driver Development Documentation (SPI)

If I wanted to implement a JDBC Driver, how would I know which interfaces/abstract classes I would need to implement in order to play successfully? In reading through the source, it looks like there are classes that I would consider both API(e.g.…
tunneling
  • 527
  • 6
  • 21
1
vote
0 answers

What is the best way to support 3rd party "widgets" that are embedded in a web application?

I'm working on a lead management web application and need some suggestions on supporting 3rd party "widget" or "plug-in" support. One example might be a widget that uses the Mail Chimp API to build up a recipient list in Mail Chimp based on the…
clone45
  • 8,952
  • 6
  • 35
  • 43
1
vote
1 answer

Extensible OCR engine for .Net

I'm looking for free (or free to try) OCR engine for .net which is extensible (I want to add not supported language(s)). I know some OCR engines, but I need a suggestion. Which is better and extensible? Thank you!
Vano Maisuradze
  • 5,829
  • 6
  • 45
  • 73
1
vote
2 answers

Why can't a Yocto SDK build a Yocto SDK?

There are set of related questions here, because I suspect I am asking the wrong question. The related questions may help someone discern what my fundamental misunderstanding is. I have worked…
Sam Liddicott
  • 1,265
  • 12
  • 24
1
vote
1 answer

How can I constrain Vinyl / Composite Records?

I have an extensible Vinyl / Composite record (similar to HList, Frames...), and I would like to generate the tuples of keys/values, such as tuplify '[String :-> Whatevs, ...] :: [(String, String)] This is surprisingly hard. original gist. Solution…
Josh.F
  • 3,666
  • 2
  • 27
  • 37
1
vote
3 answers

Making a layer modular/extensible in Java

I'm new in the Java world and struggle a little bit with my application. I divided my application into several layers (UI, controller, ...). The bottom layer is responsible for gathering data from sensors. My goal is to make this layer extensible,…
Voyage Moh
  • 23
  • 3
1
vote
0 answers

Extensible Hashing with unique keys

I have a database that consists of tuples like so 'The Abyss,1989,LaserDisc,Science Fiction,James Cameron,James Cameron,USA,20th Century Fox,$0.00' I want to concatenate the movie title with the year to make the unique key for each bucket. But…
1
vote
1 answer

Sencha App does not find class in package

I packaged https://github.com/bmoeskau/Extensible: sencha generate package -type code calendar Then I added the line package.framework=ext to .sencha/package/sencha.cfg in the package. And required the package in app.json of my app: /** * The…
ideaboxer
  • 3,863
  • 8
  • 43
  • 62
1
vote
3 answers

How can I implement double dispatch when I don't know all the classes in advance?

I've got a base class with (potentially) a lot of subclasses, and I would like to be able to compare any two objects of the base class for equality. I am trying to do this without invoking the blasphemous typeid keyword. #include struct…
1
vote
2 answers

Extensible.log is undefined

I am trying to get the Calendar Pro from Extensible to work. if I do everything as the example says here, I get an undefined for the log function on Extensible.js : However everything looks alright in my code : Ext.Loader.setConfig({ enabled:…
Oliver Watkins
  • 12,575
  • 33
  • 119
  • 225
1
vote
0 answers

Control File for SQL LOADER

Hi I have a problem with importing data into multiple tables. Anybody can help me with writing to the control file that import from CSV into multiple tables. lets say I want column 1,2,3 from EXCEL CSV into table employee and table 4,5,7 into table…
1
vote
0 answers

Ext JS 4 Calendar - Cannot call method 'getTime' of undefined

I'm getting Cannot call method 'getTime' of undefined error when I try to create a new event by clicking on Ext JS 4 calendar. Here's my event store defition: Ext.calendar.data.EventMappings = { // These are the same fields as defined in the…
talha06
  • 6,206
  • 21
  • 92
  • 147
1
vote
0 answers

Symfony - Query Result Convert to Json

I have been searching the web about this problem and have not been very lucky. I am using symfony to retrieve data from the database to load in to a extjs library. My problem is when loading the data, an error occurs saying "Ext.Error: You're trying…
oneofakind
  • 552
  • 17
  • 41
1
vote
2 answers

Java extensible applet

I need to make an extensible applet that will have plugins downloaded from server and included dynamically in my applet. I managed to do this locally without an applet, but when I try to port it to the applet I stumble across some problems How can…
And Cost
  • 95
  • 8
1
vote
3 answers

java implement dynamic plugins in Java

I developed an application that loads plugins dinamicaly according to this tutorial: http://solitarygeek.com/java/a-simple-pluggable-java-application, but i came across a problem. In my main application i have a class with static methods, how can i…
And Cost
  • 95
  • 8