The extending tag has no wiki summary.
1
vote
1answer
32 views
How correctly extend class
I try to extend class, but use construct from first class, what am i doing wrong?
class Test
{
public:
Test(const char *str)
{
cout<<str<<endl;
}
virtual const ...
1
vote
1answer
39 views
ActiveSupport::Concern and extending mongoid model
I am using mongoid with rails 3 and have come lately to a very tough
problem and I need an advice.
I am working on a CMS and one of the ideas was that CMS would provide
some basic models definitions ...
1
vote
0answers
52 views
Extending Python with C - ImportError: can't map
I'm trying to extend Python with C. My C code compiles and I get a .so file, but then on import to Python, I get this error:
ImportError: dlopen(/Users/.../python/PYC/isprime.so, 2): no suitable ...
1
vote
1answer
48 views
extending jquery-ui menu widget fails, but it shouldnt
This is just a quick question since I cant figure out what's the actual problem here, maybe someone has more experience in extending a jquery-ui widget.
I'm trying to change some behaviour in the ...
0
votes
1answer
53 views
How to create a new instance, in C/C++ extension module, of a class defined in Python code?
As the message subject says: How can I, in the C/C++ extension module, create a new instance of a class that's defined in Python code? I'll provide more info below.
NOTE#1: I'm trying to do this with ...
2
votes
2answers
203 views
Symfony2 extending DefaultAuthenticationSuccessHandler
I want to alter default authentication process just after authentication success. I made a service that is called after authentication success and before redirect.
namespace ...
0
votes
1answer
54 views
oop, php, extend class, run function when specific method in class was called
first of all, I'm pretty much a noobie regarding oop etc, so please be kind.
i did read a lot of manuals but somehow got lost in all the stuff and couldn't find the answers :(
so any hints, links ...
0
votes
2answers
30 views
Creating a Deck Class extending Stack
first of all let me say that this is not so much a question of how to get it to work, it is more a question of whether this is good practice or not.
I want to implement a deck of cards (As seen in a ...
0
votes
1answer
67 views
Android SQLite: How do I transfer variables to a different activity?
MAIN.JAVA
public void onClick(View arg0) {
switch (arg0.getId()) {
case R.id.buttonupdate:
String name = sqlName.getText().toString();
String value = ...
0
votes
1answer
85 views
JavaScript prototype extending
I'm trying to extend an Abstract object.
var Abstract = function() { code = 'Abstract'; };
Abstract.prototype.getCode = function() { return code; };
Abstract.prototype.getC = function() { return c; ...
0
votes
2answers
48 views
JavaScript language extensions with function calls lacking parenthesis - are they possible?
Is it possible, by any means, to do something like this:
function A() {
var Loaded = 'loaded';
raise Loaded;
}
function A_raise(evt) {
console.log(evt);
}
A.prototype.constructor = A;
...
-1
votes
2answers
41 views
Is it possible to extend string resources lookup in Android?
I have a multilanguage application that uses the standard xml files to provide string values in different laguages.
...
res/values/strings.xml
res/values-es/strings.xml
res/values-pt/strings.xml
...
...
0
votes
0answers
133 views
Flex 4.9 Extend Spark Panel to add more content groups
I would like to extend the spark panel component to have three content areas whose content is settable via MXML. I want to do something like the tutorial below ...
0
votes
1answer
69 views
Using a controller plugin to extend the existing layout in zend framework
I have a layout file as follows:
<?php echo $this->doctype(); ?>
<html>
<head>
<?php echo $this->headTitle(); ?>
<?php echo $this->headLink(); ...
2
votes
2answers
108 views
Extending c++ with a new keyword
I want to extend c++ with some keywords, for example, "property", to add properties to a class/object (like Visual Studio extend C++ in the "managed" version).
For a code example:
class Example {
...
0
votes
1answer
28 views
php manual exception example
So I was reading the php manual on Extending Exceptions and read the example code. My question about the following code is: why does var_dump($o) evaluate to null? Is it because the constructor of the ...
0
votes
0answers
92 views
Display filter in Visual Studio Solution Explorer
In our company we tend to name projects like: "Company.ProgramNameThatIsOftenLong.UI/BL/DA.ProjectName"
Now, you might imagine, that it's kind of frustrating when you have to keep Solution Explorer ...
1
vote
2answers
52 views
Discover the public methods of a shared library
In addition to Extend a dynamic linked shared library? I would like to find out, how I can get a list of all public methods of a shared library with closed source.
I have tried
nm -D libfoo.so
...
0
votes
0answers
20 views
Is observer pattern the right pattern to add new functionalities to a CMS system?
In a home made CMS system, lets say you want to add comments to a page content - you create a class like Comments and then you will use observer pattern to register that Comments to class CMS class? I ...
5
votes
1answer
175 views
Extend a dynamic linked shared library?
I'm new at C, so sorry for my lack of knowledge (my C-book here is really massive :)
I would like to extend a shared library (libcustomer.so) with closed source, but public known api.
Is something ...
2
votes
1answer
141 views
What is the prefered way to extend the Activiti process engine functionalities?
Activiti is a promising business process engine, many organizations has started to develop business process management systems using activiti.
In my case I would like to use activiti to develop a BPM ...
0
votes
1answer
97 views
Trouble on extending Rails in a sub-directory of the 'lib' directory
I am using Ruby on Rails 3.2.9 and I would like to extend the framework with a custom validator located in a sub-directory of the lib/ directory. I implemented the following:
# ...
6
votes
3answers
211 views
Array change listener [duplicate]
Possible Duplicate:
Javascript - How to extend Array.prototype.push()?
How can I be notified (run a pre-defined function) of any change to a registered array (or at least any addition or ...
3
votes
6answers
110 views
Reimplementation of inherited interface methods
I did not fully understand using Interfaces, so I have to ask :-)
I use a BaseClass, which implements the IBaseClass interface.These interface only contains one declaration :
public interface ...
2
votes
1answer
737 views
Extending Ext.data.Store
I am trying to centralize my configuration of EXTJS stores within my application, however, I cannot seem to figure out how to make this happen. I am using ExtJS 4.1.
I have a base store, which I ...
0
votes
1answer
223 views
Extend ActiveRecord method_missing
I've been looking around the web and have found a great deal of information on attempting what I am, however one bit of sugar I'd like to add to my Ruby/Rails mixin, is creating a function that looks ...
0
votes
0answers
81 views
How to extend built-in JSFL objects (ex: Frame, Layer)
It seems like JSFL doesn't allow all of it's built-in objects to be extended (via the prototype technique).
The primitive types seems to accept it just fine:
Array.prototype.toLines = function() {
...
2
votes
2answers
534 views
How to extend an existing jQuery UI widget?
I am using jQuery v1.8.3 and jQuery UI v1.9.2. I would like to extend an existing jQuery UI widget (in my case the Autocomplete widget) by adding and overriding just some options and methods but ...
0
votes
1answer
137 views
C++ Defining a specific object type when extending a template class
I have written a short template list class defining some methods I would like to use in implementations of it. My current problem is that I am having trouble extending the generic template type and ...
0
votes
1answer
93 views
Can't implement extended TextView
I just found the AutoResizeTextView by Chase
Auto Scale TextView Text to Fit within Bounds
But I couldn't make it run yet.
AutoResizeTextView monologTextView;
monologTextView = (AutoResizeTextView) ...
1
vote
1answer
132 views
Extending BufferedImage class
I am extending the BufferedImage class, to add some method like getRed, getBlue, getGreen for getting pixel color. The problem is that my original image is BufferedImage object not my extended object. ...
1
vote
1answer
378 views
How to alias a class method within a module?
I am using Ruby v1.9.2 and the Ruby on Rails v3.2.2 gem. I had the following module
module MyModule
extend ActiveSupport::Concern
included do
def self.my_method(arg1, arg2)
...
end
...
1
vote
1answer
320 views
Proper way to overide a JQuery Mobile method in $.mobile
The JQuery Mobile app I'm working on tends to freak out when the soft keyboard launches. I've implmeneted a solution and it works great, but I had to edit jquery.mobile-1.2.0.js directly to do it. ...
2
votes
1answer
670 views
Extending entities in Symfony2 with Doctrine2
I'm having trouble finding a way to appropriately extend an Entity across bundles in Symfony2 using Doctrine2 as the ORM.
Currently there are three methods that I've found to extending entities in ...
0
votes
1answer
184 views
How to extend the Qt Print Dialog
Is it possible to extend the Qt print dialog (QPrintDialog) with additional UI elements, as it can be done in MFC via the PD_ENABLEPRINTTEMPLATE macro? See this link.
I didn't find anything in the Qt ...
0
votes
1answer
66 views
Can I extend the core helpers within a package in Code Igniter?
I'm building my own base to use on multiple sites that I will be building. And I've made a package for that. But I want to extend the CI helpers in that package (not in the app) - helpers such as ...
0
votes
0answers
45 views
control where markup should appear on rendered page?
I am building a Extender control. This control derives from the normal Control. Its purpose is to inject some text before/after the specified target control. I imagine this to be similar to how the ...
1
vote
0answers
97 views
Embedding Python via boost::python in a C++ Python extension
I have the following scenario: A custom C++ library should have Python embedded via boost::python. This library should get statically linked against different wrappers which allow the library to be ...
0
votes
0answers
78 views
Any Help about customizing and extending powerdesigner
recently, I have read some official documents about customizing and extending powerdesigner. while i can't understand it at all. I hope there are some good materials or tutorials. any help would be ...
3
votes
1answer
349 views
Inserting code with XJC+xsd+jxb using the options “ -Xinject-code -extension ”
Im' trying to use the extension "-Xinject-code" of xjc to add some code to my generated classes. For the following simple xsd schema...
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema ...
3
votes
2answers
130 views
Can I use a method as a lambda?
I have an interface the defines a group of conditions. it is one of several such interfaces that will live with other models.
These conditions will be called by a message queue handler to ...
0
votes
2answers
223 views
C# Activator createInstance for extending class
I have a base class, which is as follows:
public Data()
{
id = num++;
SetVariables();
}
//fill every Variable varNames, parseInduction, noise, seperator in Children ...
1
vote
1answer
265 views
Getting my python c++ extension to compile using Swig and Distutils on Windows
I'm trying to create a python c++ extension on windows. My problem is that I can't seem to generate the .pyd file (link error) even after using swig and distutils. Below is step by step what I did:
...
1
vote
1answer
93 views
Sub functions of a function as a prototype
i'm trying to extend the Number object with a function that has two sub-functions. It works fine, except that the sub-functions can't access the Number object value via this and I don't figured out ...
0
votes
1answer
216 views
Extending Backbone Objects
I am in need of extending the major Backbone functions (View, Model, Router) with some own members. However, the following does not work properly:
Backbone.View.prototype.foo = ["bar"];
Admittedly, ...
0
votes
3answers
579 views
Codeigniter - extending controller does not work
I am trying to extend a controller with my own class which extends the default CI_Controller class. Except it doesn't work.
It says it can't find my sub-class. My subclass is located in ...
3
votes
1answer
67 views
PHP5 OOP: Accessing changed parent properties
This is my first question, and something which has got me stumped. I'm not sure if this is something simple and I'm overlooking it or something not possible.
Below is a very simplified version of my ...
0
votes
0answers
103 views
Extending TabLayoutPanel in GWT
I'd like to create my custom TabLayoutPanel class. Here's its code:
public class ResizableTabLayoutPanel extends TabLayoutPanel {
private boolean drag_drop = false;
private boolean allowX;
private ...
0
votes
0answers
142 views
Static c++ variables reset by python import
I have extended some python with C++
and I have also than embedded that python in C++
There are static Variables that are set in the c++ code before the python is imported, when the python is ...
0
votes
1answer
278 views
Extending Object prototype in ActionScript 3
Whenever I try to extend the Object prototype, I get an error:
Error #1056: Cannot create property my_extension on mx.core.UIComponentDescriptor.
I searched around, and found these:
Flash AS3: ...


