Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
461 views

Entity Framework 4, inheriting vs extending?

What are the advantages/disadvantages to each method? I know I've read somewhere in either a book or on this site why using table inheritance is crappy for Entity Framework 4. For instance, why not ...
7
votes
1answer
157 views

What is the purpose of extending an anonymous type in Scala?

I'm trying to get a better understanding of Scala, and I can't seem to find a valid usecase for code like the following: class C extends { def m() { /* ... */ } } What is the rationale for allowing ...
5
votes
3answers
2k views

Extending PHP static classes

I've been struggling in this area for days now, and I have reached a conclusion, but since the conclusion was not what I was looking for, before I give up, I'll try to see what other people say. Faith ...
4
votes
1answer
82 views

How to extend existing enumerations objects in Scala?

I'm wondering if you can extend already existing enumerations in Scala. For example: object BasicAnimal extends Enumeration{ type BasicAnimal = Value val Cat, Dog = Value } Can this be ...
4
votes
1answer
916 views

proper way of extending ActiveRecord::Base

I have extended the ActiveRecord::Base class in the following way: I made a directory under the lib, let's call it now foo wrote the module which provides the extra method has_many_bidirectional to ...
4
votes
4answers
2k views

Overriding Doctrine_Record (sfDoctrineRecord) instance methods in Doctrine PHP Symfony

My background is in Propel, so I was hoping it would be a simple thing to override a magical getter in a Doctrine_Record (sfDoctrineRecord), but I'm getting either a Segfault or the override method is ...
4
votes
4answers
399 views

Can I use C++ features while extending Python?

The Python manual says that you can create modules for Python in both C and C++. Can you take advantage of things like classes and templates when using C++? Wouldn't it create incompatibilities with ...
3
votes
2answers
211 views

Error when trying to subclass gdb.Breakpoint while writing PythonGDB extension

I'm trying to write a simple python extension for GDB that outputs to a file whenever a breakpoint is hit. According to the documentation, "The gdb.Breakpoint class can be sub-classed" (see ...
3
votes
1answer
759 views

ImportError: [libraryname].so: undefined symbol: [function name]

I'm extending my Python program with a C module that uses the GstPhotography interface for GStreamer. My C module compiles fine, but when I try running it from Python, I get this error: $python ...
3
votes
1answer
1k views

Reacting to new contacts in Android Contacts application

I would like to perform a certain operation every time a user adds a new contact in the Android Contacts application. It would include using the new contact's information. Is there an easy way to do ...
3
votes
2answers
780 views

Extend xUnit.NET to use custom code when processing a class and locating test methods

I'm a big fan of the xUnit.NET framework; I find it light, simple, clean, and extensible. Now let's say that I have a class like so: public class AdditionSpecification { static int result; ...
2
votes
2answers
52 views

Extending class for activity

I'm totally new to Android (Java) Development and I'm so excited about it! The developers guide of Google is fantastic and I learned a lot in a small time. It even keeps me awake during the night ;) ...
2
votes
2answers
137 views

Extending functionality of Grails Plugin

I would like to know, if it is possible and if there is a generic way to extend the functionality of a grails plugin. I recently installed the commentable plugin, but need to do some modifications to ...
2
votes
1answer
428 views

Extending Core Edmx, multiple Edmx's in EF4

We have an EF4 EDMX which contains ~300 entities which are used in our core product suite (entities imported from database). When we get new clients, more often than not they want to store extra ...
2
votes
2answers
5k views

Missing Python.h while trying to compile a C extension module

I'm following this tutorial on how to extend Python with C\C++ code. The section named "Building the extension module with GCC for Microsoft Windows" fails for me with the following error: fatal ...
2
votes
2answers
338 views

How to control placement ordering when using arrangeoverride to extend WPF controls

I am extending the WPF textbox in order to place a custom image on it. I want to capture mouse clicks on this image. So far i have been able to use arrangeOverride to place the image in where i need ...
1
vote
1answer
50 views

Good idea/Best way to extend Spine.Model

[background below] I've got my data modelled out in SQLObject in Python on the back-end. Right now I'm converting an SQLObject to a dict, and grabbing all the keys from the dict and then exporting ...
1
vote
0answers
41 views

jpa AttributeOverride in multiple embeded properties

Could someone help me to set the proper way to override a column name in an extended entity. Embedeable: @Embedable Email @Column(name = "email_adress") private string email; Parent entity: ...
1
vote
2answers
89 views

Testing a private method in an abstract class extends the other one

I'm trying to test a private method in an abstract class. I've got three abstract classes: abstract class AbstractClass1 extends AbstractClass2 { private function _privateFunction() { ...
1
vote
4answers
193 views

Erlang: simple pubsub for processes — is my approach okay?

Disclaimer: I'm pretty new to Erlang and OTP. I want a simple pubsub in Erlang/OTP, where processes could subscribe at some "hub" and receive a copy of messages that were sent to that hub. I know ...
1
vote
0answers
72 views

Center static textfield with jsfl: strange results

Using Flash CS3, I'm trying to center a static textfield with jsfl after I've altered its text, like so: textElement.setTextString( text ); fl.outputPanel.trace( 'text width: ' + textElement.width ...
1
vote
5answers
200 views

Extending a class in C++ using header files

I found found out that to extend a class I would have to do this: class x : public extendsThis { // rest here }; So, I create 2 classes, in two seperate files: - particle.h - class particle : ...
1
vote
3answers
306 views

Copying Javascript getters/setters to another prototype object

// Base class var Base = function() { this._value = 'base'; }; Base.prototype = { constructor: Base, // By function getValue: function() { return this._value; }, // By ...
1
vote
1answer
142 views

Extending embedded Python in C++ - Design to interact with C++ instances

There are several packages out there that help in automating the task of writing bindings between C\C++ and other languages. In my case, I'd like to bind Python, some options for such packages are: ...
1
vote
1answer
95 views

Usefulness of extending jQuery core

I discovered a method of extending the core jQuery init function (which is what gets called anytime you use the $() or jQuery() function). This is not possible using the ordinary proxy pattern but the ...
1
vote
3answers
66 views

Can I extend Objects with +/- etc?

I tried extending native Objects using operators. It works. Would there be side effects you can think of? Number.prototype['+++'] = function(n){ return this + (2*n); }; String.prototype['+'] = ...
1
vote
3answers
210 views

C++ interface style programming. Need a way out

template <typename T> class BaseQueue { public : virtual void push_back(T value) = 0; //other virtual methods }; template <typename T> class BaseDeque: public virtual ...
1
vote
1answer
195 views

SharePoint and FBA

I have been involved to develop a customized SharePoint 2010 application that uses a custom db for authentication. Following many tutorials on the internet I was successfully able to implement FBA ...
1
vote
2answers
125 views

Problem with accessing superclass methods in method redefinitions

I am having a bit trouble to understand when "super" can be called and when not. In the below example the super method leads to a no superclass error. class Bacterium def eats puts "Nam" end ...
1
vote
2answers
61 views

Extending a class with common functionality

I have three classes which basically do very similar things; Store a record of an uploaded file. Move and upload the file. Set the status of the record to active or revoked. One of the classes has ...
1
vote
1answer
158 views

How do you extend a django pluggable app?

Let's say I am using django-tagging application and I decide I want to add a form class to the existing tagging forms. I do not want to patch the form into the existing forms.py since it will be ...
1
vote
1answer
127 views

How to extend methods to a class not to its instances

Extending methods to any instance is really easy: public static string LeaveJustNumbers(this string text) { return Regex.Replace(text, @"[\D]", ""); } ... string JustNumbers = ...
1
vote
3answers
736 views

extending pythonce to access gsm/camera/gps easily from pythonce

as it seems there is no scripting language for windows mobile devices that gives access to phone (sms, mms, make a call, take photo) I wonder how complex would it be to make a python library that ...
0
votes
2answers
48 views

jQuery UI event functionality extending

I want to add functionality of auto-destroying dialog on close without adding any special code to every dialog call in the current project. So I think it needs to override the default dialog close ...
0
votes
1answer
42 views

How do you create a page that queries a legacy database in umbraco and secure it with Active Directory?

I was interested in using Umbraco for an internal project. Can I use it to query a legacy database and display the results within the CMS? Can this page that I created be limited security wise via ...
0
votes
2answers
63 views

return type hashtable in extended method

I have an interface Node that asks for the method: public HashSet getNeighbour(); NodeVariable implements Node, and its neighbours are of type NodeFunction (that implements Node, too), and I wrote ...
0
votes
2answers
78 views

JSFL fl.saveDocumentAs();

I am writing a JSFL script that resizes flas and saves various versions, with appened names. I can get a "Save As" prompt to pop up using fl.saveDocumentAs(); But I can't seem to get flash to ...
0
votes
1answer
86 views

Python and Dynamically Extending C++ Classes

So I'm running into a problem with my custom types, functions and attributes in Python. When I'm in Python, and I want to set an attribute on one of my custom types (for example Vector4), my code ...
0
votes
1answer
121 views

Extending styles and themes confusion

In my manifest I used to have something like this <activity android:name=".MyActivity" android:label="@string/app_name" name="Theme.NoTitleBar"... and it worked great, I mean the ...
0
votes
1answer
150 views

Extending widgets in Jquery UI with redefining parent methods

I try to extend UI dialog according to documentation (UI version 1.8.16): (function($) { $.widget('ui.mydialog', $.extend(true, $.ui.dialog.prototype, { _create: function() { ...
0
votes
2answers
196 views

MySQLI extension and native error handling

I am trying to extend the PHP5 MySQLi Library class mysqli_ls extends mysqli The reason I am extending the class is to add functionality and features I require that are not included by default. ...
0
votes
2answers
97 views

Resolving urls to different views for different types of user profiles in Django

I'm adding a new type of user profile to site and this new type of user(say new_type) should not be able to reach the same views like the existings users. My question is: how can i use different ...
0
votes
1answer
147 views

extending django user model

I am extending the User object in django and have a user profile. So using the post_save hook I save a user profile in the following way: class UserProfile(models.Model): user = ...
0
votes
1answer
102 views

Complex data structures while embedding\extending Python with C++

Python documentation gives a nice introduction to Extending and Embedding Python with C\C++. However, in many cases there's a need to transfer complex data structures between the languages. What ...
0
votes
0answers
72 views

Extending\Embedding Python with C\C++ vs. using a serialization framework

Two approaches of working with Python and with C\C++ simultaneously are: Extending and Embedding Python with C\C++ Using a serialization framework to transfer events and data structures What are ...
0
votes
0answers
99 views

How to modify NumericAxis to change number placement

I am creating a chart in Actionscript.. I need it to not have regular spacing along the numeric vertical axis, because I want to cram extremeley high valued at the top but still have a consistent ...
0
votes
1answer
72 views

is it possible to extend activity class and PreferenceActivity class at the same time

I want to have my main class for creating activity for 2 different flags. 1) One with relative layout Textview and images for which I am extending my class as public class Abcd extends Activity ...
0
votes
1answer
469 views

Use JQuery AJAX Prefilter to Inspect Response Data And Conditionally Forward to 'Error' Event Handler

I may be way off course, but I was wondering if it's possible to use the JQuery prefilter functionality and analyze the response data in an Ajax Success and conditionally forward to the error event ...
0
votes
1answer
78 views

Extended DOMElement object loses it's properties when imported into another document

When importing an extended DOMElement object with specific properties into another DOMDocument than the one it was created with all properties are lost (I guess it doesn't actually copy the no but a ...
0
votes
1answer
659 views

Magento: get order id to use in outside application

I want to set up an affiliate program for an online store that uses Magento for e-commerce. How could I save the order id of a sale to be used to update my affiliate table? Please do not recommend ...

1 2