The composite pattern describes that a group of objects are to be treated in the same way as a single instance of an object.
0
votes
1answer
24 views
WPF Howto create a reusable composite component with configurable content?
I would like to create a component that is made up of an arbitrary control and a little button beside this control (same as in this example: http://putridparrot.com/blog/wpf-composite-control/).
My ...
0
votes
0answers
8 views
Composite C1 undo & redo buttons grayed out on latest install of Conposite C1
Have just installed latest source code for Composite, Notice that the undo and redo buttons on the text editor used for adding content to pages are both disabled. Anyone else had this issue?
thanks
0
votes
1answer
71 views
composite primary key persistance in doctrine 2
i face quite a tricky problem for me...
I'm building an application with composite primary key in symfony 2.
My problem is that I can't persist my entities because I have to build a custom id ...
0
votes
2answers
33 views
symfony2 + doctrine2: map many entity to join to the same entity composite primary key
I need to map many entities as one to many to the same entity primary key.
For the sake of brevity i will try to semplify a little bit:
Suppose I have a news and a product table that need to be ...
0
votes
0answers
27 views
How to use Unity to build composite asp.net mvc 4 application?
I need to build an asp.net mvc 4 web application which can be extended by plugins. These plugins could be build by different development teams. These teams do not have access to the sourcecode of the ...
2
votes
1answer
380 views
Mongoid 3 - Check for uniqueness of composite key
I switched to Mongoid 3 which makes few things different :) Currently I try to check if a composite field is unique:
class Host
include Mongoid::Document
field :ip, :type => String
field ...
3
votes
1answer
92 views
Haskell: Couldn't expected type 'Integer' with actual type 'Int'
I've been staring at this code for quite some time now and I can't get my head around that error message.
divisors :: Integer -> [Integer]
divisors n = [t | t <- [1..n], mod n t == 0]
length' ...
0
votes
1answer
29 views
JPA: Retrieve a list from secondary table using a composite key
well, here I have an example of what I'm trying to do with no success. Sorry for the dummy example. I have the following tables:
CREATE TABLE HOUSE(
HOUSE_NAME VARCHAR2(255),
OWNER_ID ...
0
votes
1answer
36 views
GWT: Exception: This widget's parent does not implement HasWidgets, but it does
I am trying to create a structure where I have this larger UI with small parts that I can swap in and out and you get to more detailed areas. In essence I am making top level panels which hold ...
0
votes
0answers
11 views
how to add text in composite shape when double clicking it
I want to double click a composite shape to add textCtrl on it, but when I double click the composite shape, it do nothing, it can't response to the double click event. Can you help me to solve this?
...
-1
votes
0answers
38 views
How to zoom a Composite?
I have a ScrolledComposite and on top of this I have a simple Composite and on top of this simple Composite I have 10 ChartComposites. Each ChartComposite contains a JFreeChart (Bar Chart).
I want ...
0
votes
2answers
71 views
Composite Pattern in C#
The exercise is about making a software to manage a Robot Factory.
In my program I can create single parts and then robots with them but I also can have robots with smaller robots inside. That's ...
1
vote
1answer
111 views
Inserting rows in Cassandra table with 3 fields as composite key
I'm a newbie to Cassandra and I need it for a quick and small adhoc job.
However, I'm on a stalemate with a problem. I have a column family created
with the CQL below:
CREATE TABLE dummy_file_test
...
7
votes
4answers
2k views
Implementing a composite pattern using MVC/Backbone.js
My webapp has a composite structure i.e. each Category collection can contain a mixture of individual Items and other Categories as its rows/nodes/children (not sure of the correct terminology here). ...
0
votes
0answers
6 views
Default theme Splash text formating
I use composite c2 default theme
I would like to format the appearance of the splash text.
I have tried to mix html code with text and all appears as text.
I would also like to add images...
Is there ...
11
votes
1answer
344 views
Java AWT custom CompositeContext & anti-aliasing: RasterFormatException when drawing outside of the client area
I am trying to implement SWT GC-like xor-mode drawing for an AWT Graphics2D. Using the built-in XORComposite is not an option as it does not implement xor-mode drawing as in SWT.
The SWT xor-mode ...
3
votes
1answer
231 views
Composite, component and entities in C++ game engine
I'm working on a school project developing a game. We use an engine made by one of the teams we have. The build-up of the engine is unclear to me and seems an anti-pattern. However, it seems that no ...
1
vote
1answer
187 views
Mouse events in SWT
I defined a Node class extends Canvas class and handle the mouse event.
public class Node extends Canvas {
String name;
public String getName() { return name; }
public Node(Composite parent, int ...
0
votes
2answers
124 views
Selective menu detection within a Composite
I want to add some objects into an Composite object. Objects can have different shapes (rectangle, circle, ellipse or even weird shape (represented by a polygon). So I defined classes like this:
...
-1
votes
1answer
32 views
Make SQL queries composite? [closed]
Lets I have a site that list restaurant reviews. When I click a restaurant I want to show the 5 top or most recent reviews. No problem.
Now lets say I want to show all restaurants in a city and their ...
0
votes
2answers
58 views
Dereference iterator as part of a boost::bind composite chain
I am trying to use bind to produce a function that:
Receives a map m
returns m.begin()->first
For that I am trying to use boost::bind:
typedef map<int,int>::const_iterator ...
9
votes
3answers
5k views
How do I associate a keypress with a DelegateCommand in Composite WPF?
I am building a composite application using CAL/Prism. The main region is a tab control, with multiple types of views in it. Each view has a custom set commands that it can handle which are bound to ...
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 ...
1
vote
1answer
53 views
Javascript off-DOM object events and event bubbling
Does anyone know of either a library or a pattern I can use to implement events and event bubbling in a javascript object graph without going through the DOM?
In short, I have an instance of a class ...
0
votes
0answers
27 views
ImageMagick Composite Dissolve - alignment is wrong in iPad 3 Safari
I use ImageMagick composite -dissolve 1% with a -gravity south to watermark user uploaded images.
When I test it on desktop browsers it works perfectly, android phones too (Samsung Galaxy s2 built ...
8
votes
3answers
814 views
Iterating hierarchy of nodes - Visitor and Composite?
Let's imagine I have a collection of nodes that I use for my Renderer class later on. Then I have a Visitor class that can visit node or whole collection. It's simple because my collection of nodes ...
-1
votes
1answer
75 views
Set value of composite classes using Reflection
I'm trying to create instance of an object that also have classes composed in to it:
[DataContract(Name = "share", Namespace = "")]
public class RequestShareDocument
{
[DataMember(Order = 0)]
...
0
votes
1answer
175 views
Entity Framework - Join table with composite key and a primary key
I am struggling with the way entity framework handles join tables, specifically because entity framework requires that a join table has a composite key composed of the primary keys on the two related ...
0
votes
0answers
55 views
The WCF service shows timeout error when the returning object is composed with another two objects
I've developed a WCF service and it runs on local TCP port. The service returns an object which has following definition:
/// <summary>
/// Report Data(memory stream) with ResponseData.
/// ...
1
vote
1answer
73 views
Copying complex data structures in Java
I am using Composite pattern in my Java program, such that a Component is being extended by three classes.
Leaf class extends Component
Composite extends Component
Decorator extends Component (for ...
0
votes
0answers
80 views
Serialize list of objects derived from abstract class
I'm trying to serialize list of pointers to objects, which derive from same abstract class. To be more specific: i've implemented composite pattern, and now i'm trying to serialize composite in single ...
149
votes
11answers
125k views
How to clear the canvas for redrawing
After experimenting with composite operations and drawing images on the canvas I'm now trying to remove images and compositing. How do I do this?
I need to clear the canvas for redrawing other ...
0
votes
2answers
31 views
Can the Composite (from the Composite Pattern) have an isLeaf() method?
Is there a reason the Composite should not have an isLeaf() method?
(Since the point of this pattern is (if I'm not wrong) to be able to use both the Leaf and the Composite as the same thing, without ...
0
votes
1answer
42 views
Composite Primary Key and Auto_Increment [duplicate]
I'm trying to do the composite key with one of them auto incrementing, but when i try to enter a new row it just continue the sequential.
Here's the example of what happens:
Item_1 | Item_2
1 | ...
1
vote
2answers
187 views
using insertChildren AND getting child attributes
I am actually trying to create a custom composite table component because h:datatable or p:datatable do not fit my needs. Nevertheless it shall be used like a primefaces datatable.
After I found JSF ...
4
votes
1answer
100 views
Binding monads into composites (Haskell)
Good day folks. I'm seeking some clarifications on monads please and using bind (while going into a composite .) please.
So for this example:
--Monadic parts:
readFile :: String -> IO File
putStr ...
0
votes
1answer
61 views
Trouble implementing strategy and composite pattern to give varying behaviour in a game
I'm running into real trouble trying to complete a practical that requires using strategy and composite pattern. I am trying to create a collection of vehicles which can have different behavior ...
0
votes
1answer
60 views
False Color Composite with MODIS data in ArcMap
I'm trying to make a false color composite from a .hdf MODIS file in ArcMap. I know how to do it with Landsat data and I've seen tutorials for working with MODIS in other programs, but I can't figure ...
1
vote
1answer
411 views
Cassandra-secondary index on part of the composite key?
I am using a composite primary key consisting of 2 strings Name1, Name2, and a timestamp (e.g. 'Joe:Smith:123456'). I want to query a range of timestamps given an equality condition for either Name1 ...
0
votes
0answers
56 views
SWT group composite border disappers
SWT group composite border disappers when i press TAB key. Shell has 3 group composites but the disappering problem is only with one group.
Group grpCustomerDetails = new Group(this, SWT.NONE);
...
0
votes
1answer
57 views
How do I get a FlowLayout inside a ScrolledComposite grow vertical and not horizontal
I'm trying to create a FlowLayout Composite inside a ScrolledComposite so that the FlowLayout Composite inherit it's width from the ScrolledComposite but grows in height dynamically, I've searched ...
1
vote
0answers
105 views
Error Rendering View PENDING_I18N: Unable to find composite component root for composite component with id
First of all, I'm a newby
I'm trying to implement a simple composite component in JSF 2.
I wish to initialize an attribute of my CC from java code.
this is the using view:
<!DOCTYPE html ...
1
vote
2answers
236 views
How to query with FluentCassandra
I'm new to Cassandra and to FluentCassandra (C#.NET) too. I have heavy concepts of RDBMS (relational databases), like Microsoft SQL.
Well... i was able to do some simple code, but, that is far of ...
3
votes
1answer
92 views
What design pattern could be used to connect elements of a composite?
If you have an implementation of a composite design pattern(or any graph/node type system), which design pattern would best describe the process of connecting nodes and creating links between class ...
0
votes
1answer
50 views
Create a Composite that adapt to my data in Eclipse SWT
My First try is:
public MultiLangugeText(Composite parent, int style) {
super(parent, style);
setLayout(new RowLayout(SWT.HORIZONTAL));
Map<Locale, String> texts = new ...
6
votes
2answers
7k views
GWT Composite best practices
I'm learning GWT and have started to get the hang of it. I'm at the point where my code is getting to be a spaghetti mess so I'm going back and factoring reasonable bits of it out as Composites. The ...
6
votes
4answers
171 views
Solving design involving multiple inheritance and composite classes in c++
I have struggled with this design problem for some time. I will do my best to explain what I am trying to do and the various approached that I have seen, what I am trying and why.
I work in a ...
0
votes
1answer
184 views
Linkbutton inside ASP.NET custom composite control template losing its ViewState
I've made an ASP.NET custom composite control which has an ItemTemplate for its children.
It's based on the RssFeed (http://msdn.microsoft.com/en-us/library/aa479322.aspx) example. The template has a ...
0
votes
0answers
88 views
Why does Composite have no actual value?
I have an Eclipse RCP application with 2 Parts (Main Menu and New Macro) in a Part Stack.
When the application starts it calls the CreateMainUI contributing class below which constructs the UI and ...
0
votes
1answer
38 views
pass a custom data type list in a composite
I created a composite, who has two method
public void intItem(List dataList) //can take primitive data type
public void vipInfoDataList(List dataList) // can take custom data type like: PlxVipInfo
...



