Tagged Questions
1
vote
1answer
30 views
SWT Scale - add more bars
Is it possible to have more than one selection (bars) on the scale component?
Or could someone please suggest me another component that I can use instead?
Thanks in advance!
0
votes
1answer
46 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 ...
2
votes
1answer
82 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
1answer
74 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
0answers
68 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
67 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 ...
0
votes
1answer
55 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 ...
0
votes
0answers
104 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
220 views
FileDialog and Composite
I am trying to create a browse button with FileDialog and composite in Java SWT. (Composite because, I am use CTabFolder and CTabItem. I felt to add components to CTabItem composite is good enough)
...
2
votes
2answers
223 views
Composite web application without frames
I have built two web applications lets call them App1 and App2.
App1 has multiple pages (Page1.jsp and Page2.jsp). App1 is a standalone application which has a menu which links to the two pages.
...
12
votes
1answer
380 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 ...
0
votes
2answers
130 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
vote
1answer
206 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 ...
-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 ...
2
votes
1answer
35 views
How To Find A Label In A Composite
I am trying to refresh a clabel in a composite. However the clabel does not always exist. I need a way to check if exists in the composite. I have tried the getChildren class on the composite, and I ...
0
votes
1answer
131 views
How create action for composite
I've created my own org.eclipse.swt.widgets.Composite. I am using this composite within a org.eclipse.jface.wizard.WizardPage.
org.eclipse.swt.widgets.Composite has a variable pageComplete. I have to ...
1
vote
0answers
129 views
Passing PK class with composite primary key to REST resources
I'm developing a Java Web project, that it use NetBeans's automatic mechanism to create RESTful web services from entity classes (NetBeans 7.2, server GlassFish 3.1.2). When I'm creating entity class ...
2
votes
1answer
100 views
Get SWT widget at location
I have a set of x/y coordinates relative to a composite, how do find what widget those coords fall in?
5
votes
2answers
125 views
String Manipulation or Recursive Function?
I'm in the process of coding a HTML Editor in Java. I want it to support auto-indentation. I have a Composite pattern implemented to represent the HTML tag objects in the file currently being edited. ...
1
vote
2answers
581 views
SWT Composite alignment
I would like to know what is the normal/common practices here for a SWT Composite object.
I have found out that whenever I add a Composite (with any UIs example: TextBox or Button) The UI created ...
1
vote
1answer
209 views
EclipseLink composite persistence unit class declaration
Until now I had 3 persistence units in one persistence.xml file. But I found out about composite persistence unit and now would like to implement it into my project. Here is an example on doing this ...
0
votes
1answer
533 views
How do I make it possible to resize a composite by dragging the corner
I am working with SWT and I would like to be able to resize a composite by dragging the corner of it, the same way that you can resize a shell. I'm sure someone out there has implemented a good ...
2
votes
0answers
48 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
0answers
88 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, ...
0
votes
1answer
76 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
116 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
666 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
342 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
405 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
203 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 ...
0
votes
2answers
894 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 ...
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 ...
0
votes
1answer
93 views
Understanding composite in java or GWT
I have problem in understanding a composite.
In Frame class i have verticalPanel(vp) when vp is loaded , getAction and get Button is visible on vp
WHen click on button there is a getTree is executed ...
0
votes
1answer
128 views
SWT How to put a Color Dialog in composite [closed]
The title talk about itself.
I would like put the content of a swt.colorDailog in a swt.Composite
so without using a new dialog window.
Thank you in advance,
0
votes
1answer
428 views
How to adding scroll bar and it work in Composite
ScrolledComposite sc = new ScrolledComposite(parent, SWT.H_SCROLL | SWT.V_SCROLL);
Composite composite = new Composite(sc, SWT.NONE);
composite.setSize(1000, 1000);
...
2
votes
2answers
619 views
How to convert a mathematical expression tree to its reduced form?
I'm working on some numerical analysis assignment where I'm supposed to evaluate, plot and differentiate mathematical expressions. Among other stuff. I implemented expression trees with Java.
So ...
1
vote
3answers
397 views
composite pattern implementation
I am writing a code that involves composite pattern and would like some clarification. I have Super Manager, a Main Manager and Ordinary Manager and they are in a descending hierarchy with the Super ...
1
vote
2answers
310 views
Definition of composite pattern
It is said that composite pattern allows you to compose objects into tree structures to represent part-whole hierachies.It is also said that composite pattern lets clients treat individual objects ...
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 ...
0
votes
2answers
92 views
How to set up different parameter in a Composite Pattern?
for my develop i want to use the component-pattern because a component is part of another component.
But there is one problem. The components need different parameters in the run-function (which must ...
1
vote
1answer
345 views
Composite, Buttons and Icons
My program is supposed to create circle icons in dialogue.
I have three buttons, each represent a color of the icon to be made.
So, if I click 10 times on various buttons, my program should create 10 ...
0
votes
2answers
448 views
GWT: execution stops when adding a Composite widget to RootPanel
I have an abstract class extending Composite (AbstractWhiteBoard). Then I have a concrete class extending AbstractWhiteBoard. When I instantiate the concrete class and try to add it to the RootPanel, ...
2
votes
1answer
210 views
How to? painting custom composite objects in Java
I was trying to make a board game in java and i am stuck with the following problem.
I want to create a object that can be painted in the jpanel. Let's name this object Board. This board i want it to ...
1
vote
1answer
77 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
122 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
2answers
325 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 ...
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 ...
4
votes
2answers
277 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
723 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" ...

