Top "Composite" questions

The Composite pattern is a design pattern that allows a group of objects to be treated in the same way as a single instance of an object.

ImageMagick: Layering Images with convert -composite with gravity center

background overlay composite -gravity center overlay.png background.jpg result1.jpg result1.jpg convert -composite background.jpg overlay.png -gravity …

image-processing imagemagick overlay composite
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 …

gwt composite
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 …

wpf keyboard-shortcuts prism command composite
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 …

jsf nested components children composite
composed_of in Rails - when to use it?

When should you use ActiveRecord's composed_of class method?

ruby-on-rails activerecord aggregate composite
Use GridLayout in Scrolled Composite

I am trying to created a scrolled composite that has a composite with a grid layout inside. However when I …

java swt composite scrolledcomposite
The composite pattern/entity system and traditional OOP

I'm working on a small game written in Java (but the question is language-agnostic). Since I wanted to explore various …

java design-patterns language-agnostic composite
Composite Index vs. INCLUDE Covering Index in SQL Server

I understand that Composite Indexes are always used Left to Right (e.g. if an Index was on City, State, …

sql-server database-design include indexing composite
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> …

c# linq .net-3.5 linq-to-objects composite
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 …

arrays postgresql composite