The composite pattern describes that a group of objects are to be treated in the same way as a single instance of an object.

learn more… | top users | synonyms

1
vote
2answers
272 views

Drawing Shapes in scala

I am having some serious troubles implementing a draw in the scala language. my current code looks like: package edu.luc.cs.laufer.cs473.shapealgebra import java.awt.Graphics2D class Draw { def ...
1
vote
1answer
255 views

How do I create a schema for a quiz engine?

I am developing a testing tool that will include different modules/categories of questions and will allow for different question/problem types (i.e. multiple choice, multiple choice with audio, audio ...
0
votes
2answers
423 views

How to inject N MEF exports into 1 Unity composite service using MefContrib or other technique?

Let's say I have 5 separate assemblies with the following (assume the class name is different in each): [Export(typeof(IService))] public class Service: IService { // ... } And I have a class ...
0
votes
0answers
120 views

composite in video capture not working correctly in directshow

I saw mosaic random bar below the real video when i plug in a dvd player into composite input of the video capture card. I use the following graphedit to generate the play. Am i missing some filter ...
0
votes
1answer
800 views

Vaadin + Eclipse Visual Editor NOT reloading/updating Composite components

I created a Vaadin Project, then wanted to create a Custom composite and display that as my main window (so i could take advantage of the Visual UI editor). Working with Tomcat Apache Server and the ...
2
votes
0answers
76 views

can´t change the Failure Criteria to a Composite Failure Criteria

I need help with Solidworks 2011 version 1.0 64bit Windows7! I´f build a composite shell and want to simulate a simple force on a surface. Everything is fine exapt of the following: When I want ...
6
votes
1answer
1k views

Relations on composite keys using sqlalchemy

I have this simple model of Author - Books and can't find a way to make firstName and lastName a composite key and use it in relation. Any ideas? from sqlalchemy import create_engine, ForeignKey, ...
0
votes
1answer
297 views

SWT/JFace: multicolumn TreeViewer with composite as content

I want to create a multicolumn tree like interface for a graphics editor, similar to the one here: http://imageshack.us/photo/my-images/854/51909806.png/. It will contain layers as parent tree items ...
3
votes
1answer
66 views

Composition and projectiles

I'm using a composite design in my current game which works pretty well. All game objects are either instances of GameObject or are direct descendants of it... some objects implement a particular ...
3
votes
1answer
821 views

How to formulate an array literal of a composite type containing arrays?

I have a composite type like CREATE TYPE example AS (id integer, some_stuff integer[]); Thought I can use an array of this type as an argument of a function. The only problem is I couldn't find a ...
1
vote
1answer
74 views

How to determine and cast to specific object of composite while using it?

I would like to have a composite structure which is build from JSON. Each element can has only one type of children - so a group can contain only groups or only leaves. Then based on this tree I want ...
1
vote
1answer
118 views

Designing composite webservices [closed]

How you do design composite webservices. Are there any frameworks available to let the developer simply concentrate on bussiness logic and to implement composite frameworks with some simple ...
2
votes
1answer
1k views

Fluent Nhibernate: Trying to create entity with composite key that is also the keys for two references

The references are unidirectional. The table (StoreProduct) for this entity is actually a join table that has these fields: Store_id Product_id ExtraBit So I went with an entity having a ...
2
votes
2answers
305 views

Java MVC & Composite Design Pattern With Internal Frames

Still wondering the best way to do Model-View-Controller Software Architecture, Do I pass the Controller into the View, or do I use the Observer Design Pattern and let the Controller Observe any ...
2
votes
2answers
282 views

How would I create composite settings for an application?

What I would like to do is have a versatile settings class that I can use in a composite application. As I add features and components and compose the application using MEF & Prism I would like ...
0
votes
1answer
58 views

Is there a good reason for hiding the leaf object entirely in a composite object, and limiting access to it?

So for example, here is an illustration of how the current code works. I know this may not be a perfect representation of a composite, but I wasn't sure what else to call it: public interface ...
2
votes
3answers
174 views

c++ template containing object using same type T

I have a class MemoryPool with the following (shortened to relevant) code: namespace System { template <class T> class MemoryPool { public: // only constructor ...
2
votes
1answer
216 views

how to persist a composite pattern with nhibernate

I am looking for examples of how to persist a tree structure, ideally one used as part of a composite pattern. Gabriel Shenker apparently wrote something about this awhile back but the link is dead. ...
0
votes
1answer
282 views

Waiting for a GWT Composite visualization

I am creating a Composite (various panels with my application 'areas') on-the-fly, when the user clicks on a menu entry, and visualizing it on my central panel in the screen. However, some Composites ...
4
votes
2answers
272 views

SWT user control design decision

Hypothetical question: What about this SWT design decision that to make a custom compound widget I have to subclass Composite? Is that really wise? Wouldn't it be better if SWT had a UserControl ...
0
votes
1answer
600 views

get in the center of the composite? eclipse

My purpose is to draw in the CENTER of the composite. Actually, I have an rcp view and I'm drawing some shapes inside it. this is the code that I use : display = parent.getDisplay(); white= ...
2
votes
1answer
3k views

Fluent NHibernate Composite ID table problem

I'm kinda new to nhibernate and i ran into a problem. I have the following tables: Table 1: Table Name: Users, Column 1: ID, Column 2: Name Table 2: Table Name: Missions, Column 1: ID, Column 2: ...
1
vote
3answers
353 views

Help required with a complex self join sql query

myTable is having composite key formed of columns A and B (total columns A, B, C, D, E). I want to exclude/ignore records where value of D (say order number) is same and E (say decision) is Y in one ...
1
vote
1answer
390 views

Problems with inflating a composite component that extends a Layoutclass

This is my first question here as far as i remember so please bare with me if I might have missed a similar question which has been answered. My problem: I'm trying to extend a LinearLayout to use ...
1
vote
1answer
392 views

flickering of image in SWT

I am building an SWT application, I have used a scrolled composite and a composite inside that. This has a few more buttons and checkboxes . All this is inside a composite. Now I tried to put this ...
0
votes
1answer
400 views

Scaling matrix transformed images for Compositing

I'm setting up a camera view where it has a image view over the top of it and uses matrix transforms to move the image around the screen. When I take the photo I want to be able to composite the image ...
2
votes
3answers
691 views

PostgreSQL select for arrays of composite elements

I've got a table defined over a composite type: create type footype as ( a double precision, b double precision ); create table footable as ( x integer, y footype []); How can I use a ...
0
votes
1answer
78 views

Wiring two applications in lotus notes

I need to wire two applications so that one reacts when another is selected. I need a calendar view (populated in one application) to update when a person is selected from a list (based from another ...
0
votes
1answer
105 views

NHibernate composite application - startup records for module

I am building a composite (Prism) WPF application. I hava managed to build some core elemets: for example module discovery from folder. I am also using NHibernate (Fluent) to persist data. I was able ...
0
votes
1answer
370 views

NHibernate - How to map a table with multiple foreign keys to its corresponding classes?

I have the following tables : Basically, a user is part of a project and has certain access rights on that particular project. I created the following entities: User Project AccessRight How ...
2
votes
2answers
61 views

Grouping by month with LINQ

What's the most simple way to group data over time, by month? In the example below, there's a list of games where each have the date played and the city the game was played in. If we want to get the ...
0
votes
1answer
331 views

Fluent NHibernate Mapping Left Join

I know that this code has a bit of smell but it suits this project in this specific implementation. public class InvestmentAdvisorMap: ClassMap<InvestmentAdvisor> { public ...
1
vote
2answers
774 views

WCF XMLserialization of nested composite objects

Hi I have a service contract and in its implementation I am trying to write the request parameters it receives in a text file. Here a composite object of 'TypeA a' is passed as a parameter. ...
-1
votes
1answer
309 views

USB composite Device instance IDs

I am developing a USB composite device. The composite device have 8 switches and one LED. When I plugged the Composite device to PC,I could find five devices (each with same device ID but different ...
0
votes
2answers
1k views

How to save composite or modified image for iOS Development?

I added an overlay to my image (selected from photo album) and I can't save the composite, the following code only saves the original image. Any one out have a suggestion to modify the image object ...
0
votes
1answer
2k views

Dynamically updating content of GWT Composite widgets

I created a widget that is a subclass of Composite and has a com.extjs.gxt.ui.client.widget.Viewport in it. Into this viewport I added my header component, a LayoutComponent (initially empty) and my ...
1
vote
1answer
100 views

Best practice for composite application

I am new to rails and I would like to know which is the best practice for creating composite views. I have a show view for my model, let's say it is called Project. In my project show view, I have to ...
1
vote
0answers
351 views

Playing video at different speed on iOS devices?

I would like to play back a video on iPhone/iPad in the background of my game, with opengl rendered 3D on top. The video should speed up and slow down depending of the speed of the player. The video ...
0
votes
2answers
312 views

How to get value from VOID type method?

At the time of developing the code in c# winforms, i have a problem.. In composite pattern, code is like //Interface interface Usage { public abstract void getinfo(); public ...
0
votes
1answer
88 views

Canvas and globalCompositeOperations

Hey, I have the following code, that gives you the effect of a "mask". JSFiddle: http://jsfiddle.net/neuroflux/m5Fj2/7/ Basically, I would like a semi-opaque gradient instead of a circle... I tried ...
0
votes
1answer
201 views

Service Unavailable when asking for clientaccesspolicy.xml Composite WebRole in Azure

I'm using the Composite WebRole approach to host 2 web apps in the same instance and webrole in Azure, one app is using Silverlight and needs to get (for many reasons) the clientaccesspolicy.xml from ...
0
votes
1answer
673 views

Java Polynomial Composite Method

Hey im doing a composite method for polynomials in java and im having some problems. This is my code so far and im just lost... public class Polynomial { final static private int mantissa = 52; ...
1
vote
1answer
3k views

Hibernate criteria problem with composite key

I got this hibernate mapping: <class name="CoverageTerm" table="coverage_term"> <composite-id name="id" class="CoverageTermPK"> <key-many-to-one name="productTerm" ...
8
votes
3answers
462 views

Volume rendering: confusion with front-to-back compositing

In, for example, GPU Gems the front-to-back compositing equation (for colour) is C'i = (1 - A'i-1)Ci + C'i-1 where C'i is the output accumulated colour value; A'i-1 is the accumulated alpha ...
0
votes
1answer
866 views

sending object (recursive data structures) by XML-RPC in python

I need to send an object through XML-RPC in python. My object consist of composite data type to populate a tree structure: class Node(object): '''Composite data type ''' def __init__(self, pData, ...
0
votes
1answer
1k views

Hibernate: Parent/Child relationship for a single table with composite key

A similiar topic has already been covered, but without the problem of having a composite key in the table. Basically I am trying to get a hierarchy tree out of a single table, which has the following ...
2
votes
1answer
368 views

Merge two single channel BufferedImage objects

I have code that combines two BufferedImage objects, each one representing a separate color channel (red and blue). Currently I am doing: int p, q, g, b; for (int x = 0; x < width; ++x) { ...
1
vote
1answer
297 views

Sending composite data type with XML-RPC using cPickle

I am working on a distributed processing project. I need to send my composite data type to another peer, so i can use it in other peer to populate my TreeView structure. I have these two classes in ...
3
votes
1answer
94 views

OpenRasta Framework for component (or composite) based web application

we are trying to build a more loosely coupled composite based web application, and looking at various options and frameworks. The idea is like when the user browse to a page, the uri will be ...
12
votes
4answers
2k views

Django Class Based View Composite

I'm using Django 1.3's Class-base generic views for a project. They're really nice but I would like to be DRYer. I have a page that displays a list of press coverage we've received and another which ...

1 4 5 6 7 8