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

157
votes
11answers
132k 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 ...
10
votes
7answers
6k views

Diamond inheritance (C++)

I know that having diamond inheritance is considered bad practice. However, I have 2 cases in which I feel that diamond inheritance could fit very nicely. I want to ask, would you recommend me to use ...
26
votes
6answers
9k views

Implementing MEF with ASP.NET MVC?

I am trying to find out if anyone has any experience or ideas of using MEF (Managed Extensible Framework (Microsoft's new plugin framework) with ASP.NET MVC. I need to create a standard ASP.NET MVC, ...
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 ...
7
votes
3answers
9k views

WPF, Prism v2, Region in a modal dialog, add region in code behind

I have a composite WPF application. In one of my modules I want to make a wizard and have the steps show up in a region so I can switch between the steps easier. Originally I had this wizard showing ...
4
votes
4answers
2k views

How to set value of composite variable field using dynamic SQL

Given this type: -- Just for testing purposes: CREATE TYPE testType as (name text) I can get the value of a field dynamically with this function: CREATE OR REPLACE FUNCTION get_field(object ...
22
votes
14answers
3k views

When are interfaces needed?

(In the context of .NET for what its worth) I tend to not use inheritance and rarely use interfaces. I came across someone who thinks interfaces are the best thing since spit. He uses them ...
2
votes
4answers
2k views

How to use LINQ to select all descendants of a composite object

How can I make ComponentTraversal.GetDescendants() better using LINQ? Question public static class ComponentTraversal { public static IEnumerable<Component> GetDescendants(this Composite ...
4
votes
2answers
1k views

Canvas - Fill a rectangle in all areas that are fully transparent

I'm writing a simple 2D game engine using the HTML5 canvas. I've come to adding a lighting engine. Each light source has a radius value and an intensity value (0-1, eg 1 would be very bright). There's ...
10
votes
2answers
5k views

composed_of in Rails - when to use it?

When should you use ActiveRecord's composed_of class method?
5
votes
2answers
1k views

how can I set up multiple listeners for one event?

I want to set up multiple listeners for one event, and have found that using composite listener is the key. Could anyone give me an example?
14
votes
3answers
32k views

How do I configure a RollingFileAppender to roll by date and size with log4net?

I am configure log4net to use a composite RollingFileAppender so that the current file is always named logfile.log and all subsequent files are named logfile-YYYY.MM.dd.seq.log where seq is the ...
1
vote
0answers
674 views

Oracle 11g Text: Composite Domain Index - FILTER BY on columns from different tables

I am using Oracle 11g Text, AuthorTable : (a table for Author details) AuthorId, AuthorName, AuthorDOB ArticleTable : (a table for Article content) ArticleId, WrittenDate, PublishDate, ARTICLE_TXT ...
3
votes
1answer
2k views

Why are there no decent examples of CompositeCell in use within a CellTable?

I have scoured GoogleCode, GWT ShowCase, GWT Developer Notes, and Google Groups for some inkling as to how to get/set values of a CompositeCell. There is no one definitive example that explains how ...
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: ...
2
votes
1answer
3k views

Give composite primary key in Rails

How can i give composite primary key in Rails without any gem? My first table in migration file: class CreateUsers < ActiveRecord::Migration def self.up create_table :users do |t| ...
6
votes
4answers
189 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 ...
14
votes
8answers
5k views

Composite primary key

I am working on the design of a database that will be used to store data that originates from a number of different sources. The instances I am storing are assigned unique IDs by the original sources. ...
8
votes
3answers
840 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 ...
6
votes
1answer
519 views

composite pattern design questions

I have a question about two operations you commonly see in an example Composite class diagram. * GetDescendents * GetChild(int) A common example being Files and Directories, I'll stick with that. ...
3
votes
2answers
359 views

Circular Reference in Spring with a composite pattern

let's say that I have structure like this : As most you may see it, it's a composite pattern. How do instantiate this pattern using Spring? For instance, if I have the following code : <bean ...
3
votes
2answers
5k views

Grails Domain Class without ID field or with partially NULL composite field

Per an answer to a previous question (answer here: http://stackoverflow.com/questions/425294/sql-database-views-in-grails#427691), I have tried to use a domain class to represent a view in my ...
2
votes
1answer
403 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
567 views

Astyanax Composite Column

I am looking for a data model look like this. In this data model i am using composite key. I know how to make a composite key. But somehow in this case i m unable to do. User_Keys_By_Last_Name = { ...
1
vote
1answer
1k views

How do I save a composite field value in Grails GSP?

I have a composite domain object as follows: class Person { static embedded = ['forSale'] Boolean isSelling House forSale } class House { Integer numBedrooms } I have a select ...
1
vote
2answers
2k views

Disable user interaction in a GWT container?

I want to disable/enable user interaction (mouse click more specificly) on many widgets like hyperlink, button, etc which are contained in a composite (flextable) there are more than one click ...
3
votes
1answer
797 views

“Screen” effect in Java 2D graphics

This is a question that's been bugging me for some time now: In photoshop/GIMP, there is a "screen" layer composition mode. This mode has bright colours have a strong alpha, and dark colours a weak ...
2
votes
3answers
1k views

Creating composite COLUMNS (not keys) with CQL 3

This article discusses possible ways CQL 3 could be used for creating composite columns in Cassandra 1.1. They are just ideas. Nothing is official, and the Datastax documentation doesn't cover this ...
2
votes
1answer
410 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 ...
2
votes
1answer
1k views

jpa call readonly composite table but getting “Exception Description: Missing descriptor for [CollectorInfo]”

In a Spring 3 app a controller is calling a JpaCollectorManager with calls a JpaCollectorInfoDao to get a list which is defined by a nativequery. The query calls 2 seperate tables which uses sql and ...
1
vote
1answer
63 views

Oracle: Make a composite Key containing three Foregin keys

This is my code: create table orderline ( Order_No number(4) constraint orderno_fk references order_detail(Order_No), Product_Code varchar2(6) constraint productcode2_fk references ...
1
vote
2answers
733 views

JSF2 Composite component link using ajax

Here is my (simplified) issue : I've got a page that is using 2 composite components of mine : - CCSelection - CCDisplay In CCSelection, I have a list of values, each one has got a h:commandLink ...
1
vote
2answers
277 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
865 views

PostgreSQL: Select from function that returns composite type

How to include a function that returns a composite type in a SELECT? I have composite type: CREATE TYPE "public"."dm_nameid" AS ( "id" "public"."dm_int", "name" "public"."dm_str" ); Also, I ...
1
vote
6answers
2k views

Printing the Largest Prime Factor of a Composite Number in C

I was solving a puzzle, where im required to find the largest Prime Factor of a composite number entered by the user. I thought of something and have tried it out, but it doesn't manage to detect the ...
1
vote
2answers
648 views

ASP.NET: JavaScript object Component for Composite Control

I have two doubts: 1. I would like to add some client side support for my server composite control but I can't find the correct way to add JavaScript to him. 2. Another feature I would like to have ...
0
votes
2answers
2k views

GWT composite widget

I try to build own GWT widget. I select the composite way of build it. But I have problem, the widget didn't see on screen. Here is the composite widget code: public class LoginPanel extends ...
-1
votes
1answer
49 views

Draw in composite [closed]

I have a Composite called Workspace. In this composite I want to add some graphics object. Each object can be selected, dragged, moved and can have complicated shape (circle, ellipse, polygon,...). I ...