The composite pattern describes that a group of objects are to be treated in the same way as a single instance of an object.
2
votes
0answers
46 views
Enabling focus listeners on the composite container
I have four composites aligned in order.
Each composite has a check box, Label, and 2 Buttons. Now these composites are aligned one after another.
I want to enable focus on these items, i.e. when I ...
0
votes
1answer
166 views
How to populate checkbox in Zend custom composite element?
In Zend I have a custom composite element which consists of two text fields and a checkbox.
This is the view helper:
<?php
class My_View_Helper_WorkplaceFactor extends ...
0
votes
0answers
210 views
dynamic JSF composite component styling/rendering
I've a little problem with a composite component. This component's implementation looks like:
<composite:implementation>
<h:outputStylesheet name="foo.css" library="bar"/>
...
0
votes
1answer
118 views
How can I map two columns to one member using Fluent NHibernate and IUserType?
I have an IUserType which maps two columns into a single type like this:
....
public object NullSafeGet(IDataReader rs, string[] names, object owner)
{
return new FooBar(rs[names[0]], ...
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 ...
0
votes
3answers
99 views
Searching for specific element in Composite pattern
Suppose I have a simple composite pattern structure:
abstract class User
leaf class PersonalUser
composite class GroupUser with a std::vector<User*> users container as its member variable
...
4
votes
1answer
1k views
Cassandra Hector Client: Is a RangeSlicesQuery on Composite Row Keys possible when using Random Partitioning?
Is there any way to range query rows with a composite row key when using random partitioning?
Im workling with column families created via CQL v3 like this:
CREATE TABLE products ( rowkey ...
2
votes
0answers
183 views
Hibernate mapping on partial composite key
I have following table structure something like this, one to many and many to one
mapped to one of the composite key.
@Entity
@Table(name = "parent", catalog = "testdb")
public class Parent ...
0
votes
0answers
86 views
How to make Content assist working when editors are inside Composite?
i've got problem with content assistant. In MultiPageEditor on one tab i've got 2 StructuredTextEditor in one Composite:
MultiPageEditor:
-page0:
--composite: StructuredTextEditor1, ...
1
vote
1answer
1k views
SWT: GridLayout column span
I've been using SWT for a few years, but i can't seem to figure this one out:
I need to SPLIT a VIEW into 2 "zones": LEFT and RIGHT
So i use a Composite with GridLayout with 2 columns to do it.
...
0
votes
1answer
94 views
mysql composite if column from composite values?
I need to add an extra column to my query results,
The column needs to be called percent,
If col1 == 0 then percent should contain NIS else percent should contain ceil(col2 / col1 * 100)
So I ...
0
votes
0answers
23 views
Composite C1Contrib MembershipUser" provider Ideas?
I am really enjoying the learning curve with C1 Composite CMS, However it's not clear to me what the "MembershipProvider provider" setting is in this following class piece of code:
public static ...
0
votes
0answers
85 views
How to distinguish between objects in a Rails composite pattern implementation?
I've got this Rails 3.0.X project where I'm trying to implement a templating feature for filling out lengthy forms. I want the user to be able to fill out an empty form by using previously saved data. ...
0
votes
1answer
73 views
jsf composite inner tag
i'm trying to write a jsf composite tag which has a lot of options and inner options. something like a dataTable.
assume you want to implement a dataTable with out it's inner tags like column it would ...
0
votes
1answer
114 views
JSF composite attribute for defining a value
Simple question I hope..I have my java class where a value is set to 3:
private static final Integer MAX_LANGUAGES = 3;
Could you give me an example how to make a composite attribute that will ...
13
votes
3answers
636 views
Using Interpreter pattern on a Composite structure
I've been asked to make an expression evaluator using Composite, Recursive Descendent Parser and Interpreter.
Here's the grammar :
<cond> → <termb> [OR <termb>]*
...
1
vote
1answer
297 views
Composite pattern in PHP, how to design classes to work around the need to extend two classes
I'm using the composite pattern to have reusable elements to build a page. for this i have a simple interface which drives the pattern
interface Ai1ec_Renderable {
/**
* This is the main ...
2
votes
1answer
382 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 ...
0
votes
0answers
46 views
Sybase Composite Index - on BIT type columns with a non bit type
We have couple BIT type columns in our Sysbase DB. we use these two flags in most of the cases. Analysing to convert these two cloums to int type from BIT as the Sybase doesn't allow index on BIT type ...
0
votes
0answers
32 views
Can i inject a region into a module from a host using Prism?
I have a host thats loading a module containing 2 regions.Now in few scenarios which are available at the host end, i need to add a new region between the two in the module and load that module in the ...
1
vote
1answer
329 views
Composite Keys in DataNucleus JDO implementation (field jdoStateManager)
I'm trying to create a PK class for a JDO Entity named Item. It's was soo simple with JPA, but now im practicing JDO. I'm using anotation configuration and this is how the two classes look like:
...
0
votes
0answers
66 views
How to add a new region in between two existing regions?
I am trying to add a new region in between 2 already existing regions in a Composite UI application using Prism and C# 4.0.
How do I accomplish this?
2
votes
1answer
190 views
param reference to bean not being passed into composite component
i'm having a bit of trouble with a composite component in JSF 2.1 vanilla (on glassfish 3.1). the simplified version of my problem is here:
[composite component]
<?xml version='1.0' ...
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
34 views
Layout for Composite that allows component resizing
I was using GridLayout, but to automatically resizes components. For example, when text is added into a swt.widgets.Text component, a resize occurs. I do not want this automatic resizing.
...
0
votes
2answers
223 views
LinearLayout with Imageview and Listview
I'm working on an app where I want the logo left justified and then a list of categories on the right side. So what I have is the logo in an image view which is in the Linear Layout and then I add a ...
0
votes
0answers
370 views
Redraw SWT dynamically object
Good evening.
I created SWT application, which contains shell with two elements: ExpandBar and Button.
At application start all items of ExpandBar are expanded and Button is under ExpandBar. I want to ...
-1
votes
2answers
186 views
how to add panel/jpanel or any panel of any package to composite in java?? (using RAP, SWT)
I am creating an RAP application in JAVA.
i want to have a GUI like master detail. in which left side has panel that has a tree (like in windows 7) and on the right side there will be text fields ...
2
votes
0answers
297 views
How to query, by data range, a composite column in Cassandra with TimeUUID as the first component?
1) Inserting a column
DynamicComposite dc = new DynamicComposite();
dc.add(0,TimeUUIDUtils.getUniqueTimeUUIDinMillis());
2) Trying to query the column between given time range using a SliceQuery
...
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 ...
1
vote
0answers
358 views
passing method parameter to nested composite component fails
I have a problem with passing method parameters to nested composite component.
I have a first component wose composite:interface looks like :
<composite:interface>
<composite:attribute ...
-2
votes
1answer
64 views
Iterate composite object
I have object with next structure:
public class Item {
String value;
Map<String, List<Item>> items = new HashMap<>();
}
How I can iterate 'Item' object with all ...
0
votes
3answers
431 views
SWT: remove the invisible component space in composite
I put three composite(1,2,3) inside one composite0, so they all set their layout based on the composite0.setLayout(new FormLayout()). The problem I have now is, I make the composite3 invisible: ...
0
votes
0answers
21 views
New to C1 and have some basic questions
First of all appriciate your help!!
I am new to Composite C1 and basically I am .NET developer. I am quite excited to learn this CMS. But I am lost as there is no proper starting point (may be there ...
0
votes
1answer
150 views
What is GraphicsMagick's equivalent to ImageMagick's Blend?
I'm running this with ImageMagick and would like to speed it up slightly by switching to GraphicsMagick if possible. In this, case I'm blending 30% of image1.png and 70% of image2.png together into ...
0
votes
1answer
315 views
Updatable composite component?
I have a problem with a composite component.
This component uses the componentType attribute of the interface declaration to bind the component (and its attributes) to a backing bean.
This works as ...
0
votes
2answers
331 views
SQL Query to find record where one of the composite primary keys should be Max against other composite primary key
Following is my table:
PatientID|VisitID|Date|Accident|Diagnosis|Doctor
1 | 1 | | | |
1 | 2 | | | |
1 | 3 | | | ...
1
vote
2answers
65 views
How to archive weak links with NSKeyedArchiver?
I have a composite structure with many properties in the components.
I've implemented NSCoding protocol for every participant, the strong properties get archived well.
But every component have a weak ...
0
votes
0answers
85 views
How to avoid cross reference in composite pattern?
Good day!
Currently i bumped into this problem (taken from the book Professional PHP 6 by Ed Lecky-Thompson and Co)
As the implementation of the composite design pattern we create abstract class & ...
1
vote
2answers
728 views
How to force rendering a JSF composite component that use jQuery and jqPlot library
I use the excellent library Primefaces, but unfortunately I am forced to create my own component to customize it.
The problem is that the component is displayed well on the first tab but not the ...
0
votes
2answers
796 views
How to dispose all children of Composite object?
I hava a
Composite descComp
with some stuff in it... basically it is a container for a form, consisting of number of labels, Combos and buttons, all aligned in a line.
My form is not finite, I ...
4
votes
1answer
196 views
Apply canvas composite to only two operations
I need to draw a pizza with opacity so that it looks "empty", and progressively fill the pizza with the full colored image in a clockwise manner using canvas.
I started out by drawing the "empty" ...
0
votes
1answer
96 views
Prism CRM techniques
We're planning to develop a lightweight CRM (customers, orders, resources etc) application in WPF with Prism.v4. We already built a outlookbar-like usercontrol and use the microsoft ribbons. There ...
1
vote
1answer
477 views
Jquery composite sparklines
I am new to sparklines and need help with something. I get data from mysql and populate a span tag with class=sparks. The graph is generated but when I create another span tag with the same class, but ...
0
votes
1answer
285 views
GWT - Cant use a composite widgets clickhandlers
I am trying to create a composite widget that encapsulates my menu bar. I want it to have the click handlers defined so that I can simply add it to any .ui.xml that I create.
This is my menu bar ...
0
votes
1answer
106 views
function to expand out composite field to lucene queries
I am having trouble implementing a function that would apply composite fields to Lucene queries.
Instead of typing the lucene query:
title:"The Right Way" subject:"The Right Way"
I want users to ...
1
vote
0answers
643 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 ...
2
votes
3answers
1k views
Delete duplicates from a composite primary key table
I have a table with composite primary key(a,b). i took a backup in temp table but some how there came the duplicate records. now am not able to move the backup records to main table.
kindly suggest ...
1
vote
2answers
555 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 = {
...
2
votes
2answers
2k views
SWT Use Gridlayout in Scrolled Composite
I am trying to created a scrolled composite that has a composite with a gridlayout inside.
However when I try to set the content of the scrolled composite nothing loads.
This appears only to affect ...
