The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
4answers
159 views

Instantiating abstract classes in Java: Why does this work? [duplicate]

Possible Duplicate: Interview : Can we instantiate abstract class? I have an abstract class with all its methods defined (i.e. there are no abstract methods contained within it) like the ...
1
vote
0answers
74 views

How to extend Cookie expiry from user's last activity?

How to extend cookie expiry date from last activity which user has done? Lets take an example, by default, cookie is set for 30minutes after user login. userA do login at 1PM, hence given cookie will ...
1
vote
2answers
236 views

how to get newtonsoft to deserialize yes and no to boolean

I have a C# Win 8 app where I'm de-serializing some json that looks like this: "{'Unit':[{'name':'House 123',isAvailable:'no'},{'name':'House 456',isAvailable:'yes'}]}" into a class that uses this ...
0
votes
0answers
63 views

Javascript Library Extend way

I'm writing my own JavaScript library. How can I do for extend my object in this way? _.mymethod(); Here's my code: (function (window, undefined) { "use strict"; var emptyArray = []; ...
0
votes
6answers
134 views

extending Java class twice [duplicate]

Possible Duplicate: Alternative of Multiple inheritance in Java Multiple inheritance in Java? i have a code like so: public class myApplet extends JApplet im interested in adding ...
0
votes
0answers
105 views

Insert into table, from view, Oracle, unable to extend temp segment

I have the following code in Oracle: insert into table_x select * from view_y; commit; where view_y takes about half an hour to execute and returns about 400 000 records. The problem is when I ...
0
votes
4answers
105 views

C++ inheritance: determine inherited methods at runtime

I have a class D that extends B which extends A. I now want to add a class C that has exactly the same interface as B but provides a different implementation. So I design it as the following: This ...
2
votes
0answers
75 views

extend Interlocked.Add as Interlocked.add(ref float,ref float) using interlocked.CompareExchange

public static class InterlockedEx { // AddToTotal safely adds a value to the running total. public static float Add(ref float totalValue,float addend) { float initialValue, ...
0
votes
1answer
62 views

anchor when extended not working

I created my own chart with x and y axises. I found the present choices of charts did not suite my needs. I have managed to built my chart to my likings and now I would like to add all the ...
1
vote
1answer
57 views

Is it possible to extend private function?

I would like to override private funtion of lightbox library. This is the part of its code: $.fn.lightBox = function(settings) { var jQueryMatchedObj = this; // This, in this context, refer to ...
0
votes
2answers
71 views

Java: how to create and run class structure?

I have to create following class hierarchy. I started this way: public class Student { private String name; private int credits; public Student(String name, int credits) { this.name = ...
3
votes
3answers
64 views

Java - extend an interface

Is it correct to extend an empty interface? I just need to have a method (EventPlayer) with a parameter (EventCLass myEvent) that could be one time a class and the next time another class. public ...
2
votes
0answers
125 views

Extend Vim GUI using Python tkinter

I know there are a few ways to integrate gVIM in GTK using gtk.Socket and DBUS: Pida gtkvim anjuta-gvim VEE VimMate Vizinho But I was wondering if it is possible to say have a python plugin that ...
1
vote
0answers
84 views

Extending a Class by Adding a Button

This is probably an elementary question. However, I have completed reading the 12th Chapter of Java Programming for the Absolute Beginner and have approached the Challenges section. I cannot quite get ...
1
vote
1answer
40 views

What are the Rails object 'extend' supported paths?

This has been frustrating me for 1/2 a day. I'm trying to extend a Model of mine from a module .rb file located in a non-typical location. In my Model I try extending to a Module based on an ...
1
vote
1answer
88 views

How can I get the __construct() in MY_Controller to run? [duplicate]

Possible Duplicate: Codeigniter extending extended MY_Controller I have been fiddling with this problem for a while now, and am at the point of frustration. I am extending the controller ...
3
votes
5answers
105 views

Tell a PHP Class to always run it's constructor when it is extended

From what I understand, when a PHP Class is extended, it's constructor is not called? So in the below, the method Options_Page_Template->on_enqueue_scripts() is never actually run - class ...
0
votes
1answer
404 views

Yii Overwrite createUrl but keep parameters

I am extending and overwriting the createUrl method to make pretty URLs. Here is a snippet: public function createUrl($manager, $route, $params, $ampersand) { if($route == 'widget/view'){ ...
0
votes
1answer
188 views

Java Jung Graph Editor

I have adjacency matrices stored in a database and I would like to interactively edit them with the Java Jung graph package. Interactive graph editing can be seen in the sample GraphEditorDemo. I have ...
0
votes
1answer
104 views

extending html elements in javascript

I am working on a tool that creates GUIs by assembling it from smaller pieces of the user's choice. these smaller pieces are html elements that are created programaticly. with efficiency in mind I ...
0
votes
2answers
109 views

PHP Unable to set a private variable in an extended class

Trying to extend the FPDF class in PHP with the following code: class Reports extends FPDF{ var $reporttitle = 'TEST'; function settitle($titlename){ ...
2
votes
1answer
209 views

Scala, Extend object with a generic trait

I'm using Scala and I want to extend a (singleton) object with a trait, which delivers a data structure and some methods, like this: trait Tray[T] { val tray = ListBuffer.empty[T] def add[T] (t: ...
0
votes
1answer
73 views

ActionBarSherlock AND GoogleLicenseCheck

I want to give my app a facelift to use the Holo-Theme, even for old devices (SDK 8 and up). So I tried to add the libraries "ActionBarSherlock" and "HoloEverywhere" to my app. My Problem now is that ...
0
votes
2answers
63 views

extend more jquery

<script type="text/javascript"> function lastAddedLiveFunc(goto) { alert(goto) ; jQuery('.scroll_container').scrollExtend( { 'target': ...
0
votes
1answer
304 views

scroll extend jQuery like facebook

<script type="text/javascript"> jQuery(document).ready( function() { jQuery('.scroll_container').scrollExtend( { 'target': ...
0
votes
1answer
100 views

Trying to extend getName in my Magento Custom Extension?

Quick overview even though I think the below code will explain itself. I am wanting to extend the getName() public function and truncate it. However my code does nothing and does not even throw an ...
2
votes
2answers
87 views

Javascript Object custom functions [duplicate]

Possible Duplicate: Javascript closure inside loops - simple practical example Javascript infamous Loop problem? I have a base function, that I want to control what ends up being like a ...
0
votes
0answers
99 views

Dynamic bundle extending with Symfony

I need to create a website with Synfony with core functionality and multiple additions for specific clients. From here, nothing too complicated : every client has its own Bundle that extends the core ...
0
votes
1answer
233 views

How to setExtendedAccessToken facebook javascript sdk?

I've been trying to figure out how to extend the access token using the Facebook JavaScript API. I see a lot of code examples using PHP but JavaScript seems really hard to find. A PHP SDK method ...
0
votes
0answers
52 views

Extending RadioButtonList C#

I am working with VS 2010 C#. My requirement is to have a radiobutton list with textboxes below each radio button list item. RadioButtonList is a database driven control. I want to set values in ...
1
vote
0answers
24 views

Making a sidebar extend with the content

I know that there is a method called Faux Columns to fix this kind of problem, but how would you get a div that is the side bar (my nav bar) to extend with the content thats in a different wrapper ...
0
votes
0answers
17 views

Plugin Architecture: How to expose the core application's datasets

does anyone have experience in developing plugins wherein the plugIn needs access to some dataset. Q: how to go about correctly exposing the dataset as not to make it vulnerable or Q: how to allow ...
2
votes
3answers
61 views

php class and variables

Say I have a class class person { public static function get_pk(){ return self::$primary_key; } } and an extended class class user extends person { protected $primary_key = ...
2
votes
1answer
131 views

How to represent login of multiple users in UML use case diagram?

What is the best way to represent the use cases of a system which has multiple users who have to log in to a system, in order perform various tasks? For example, consider a university system where the ...
1
vote
2answers
78 views

Javascript, simple extension method that allows multiple versions of extending object

I have a straightforward "extend" method set up like this: extend: function(source) { for (var k in source) { if (source.hasOwnProperty(k)) { myThing[k] = source[k]; } ...
0
votes
1answer
110 views

How can I use a method in a different class?

I'm working on a project, and I need some help here. I have an AnimalWorld that extends World, and an Elephant class that extends Turtle. In my Elephant's act() method, I want to use a method ...
3
votes
1answer
38 views

Extending properties for qtip or other selector plugin

I am trying to set bunch of default properties for multiple instances of qtip, but it is not working. is it possible or am I doing something wrong? Common Properties var qtipDefaults = { ...
0
votes
0answers
50 views

Convert to ext js 4

I need to implement a keypad extension on my app. But I not able to use it . I guess the extension is the older version which not able to use in ext js 4.0 Please help. here is the js file ...
0
votes
2answers
141 views

Scala: Extend concrete class with constructor parameters

I have this concrete class: class Person (var name: String, var surname: String) and I want to create another class that extends Person: class Son (name: String, surname: String) extends ...
2
votes
1answer
496 views

Umbraco 4.10 + Extending Global.ascx

Does anyone knows how to extend Global.ascx in umbraco 4.10 onwards? I want to register custom routes to my application. I have added code behind to the global.ascx and inherited as follows: public ...
0
votes
1answer
25 views

What's more correct parent::method() or $this->method() in a child class PHP

What's a more correct way to call a parent classes functions? parent:: or $this-> ? class base{ public function get_x(){ return 'x'; } } class child extends base{ ...
0
votes
1answer
77 views

Extends from Robot handle awtexception

Very simple question: I hava a class wich extends from java Robot class, however I have an error in my IDE (netbeans), that I haven't handled the AWTException for the my class. how can I fix this? My ...
1
vote
1answer
49 views

Extending RavenDB AuthenticationUser

I am currently trying to implement Authentication using the RavenDB Authentication Bundle and the Facebook C# SDK in MVC 3. I have everything working to date except for persisting all of the ...
0
votes
2answers
569 views

Nested object extend and skipping undefined properties (in Angular or Underscore)

Is there any implementation (or pattern) on how to handle the following extend cases? AFAIK there's no way to do it straightforward neither in Angular or Underscore, is that right? Otherwise here's ...
0
votes
0answers
203 views

Magento vendor extension shipping amount calculation issue

I have the vendor dropshipping extension installed on Magento 1.7.0.2. Each vendor adds his own products and mentions whether he ships only domestic or internationally. Now, suppose buyer adds ...
2
votes
3answers
84 views

What is the difference in the extension of postgres?

I want to create a new data type and new operators in PostgreSQL. I saw that in the documentation, it is possible to incorporate new source files in C (for example) and create a new data type and ...
0
votes
0answers
8 views

Extend contact options

Current contact options are: delete, edit, etc.. I wanted to add a new option. How can I do this? Also, I would like this new option to appear when I install a certain app, much like an add-in. Any ...
0
votes
0answers
24 views

Fixing a Customized Dojo Project: Extending multiple files and creating a release build profile

I am trying to upgrade a Dojo version from 1.3.2 to the current version, but many core files have been modified. After reading the helpful sitepen article ...
3
votes
1answer
161 views

How do I declare a static variable in a PHP class but define it in a class which extends the base class?

I'm have a DatabaseObject Class that has select, insert, update and delete methods defined. The purpose of the class is to represent a subset of rows in my MySQL database as a PHP object. The ...
1
vote
1answer
344 views

“Object doesn't support method” error when extending Element.prototype in IE8

I understand that IE8 supports extension of the Element object. I tried a simple example, and it works in Google Chrome but not in IE8. Here is my code, and here is a jsfiddle to see my code: HTML ...

1 2 3 4 5 13