The builder pattern is an object creation software design pattern.
0
votes
0answers
3 views
GUI building library with live diagrams
I have been searching for some kind of GUI library that has support for live diagrams. I want to set up a diagram of an RC plane (in 2D) that will display color according to temperature. After looking ...
2
votes
1answer
41 views
Recursive builder nesting issues
I am trying to parse a JSON / JavaScript Object into HTML... Most of it's working, but I can't figure out my recursive build method (App.Layout.Form.DocumentDirector)...
It keeps on nesting ...
1
vote
1answer
44 views
Builder pattern precision
I'm currently working on the builder pattern. There is one thing that I don't get and it's the following. Let's say I want to create computers, laptop and desktop ones. Should I create a ...
1
vote
2answers
45 views
How could I possibly create two of the same thing in java
Okay, so my question is, in swing, how could i make two of the same thing while they both have the same attributes but yet can act independently, for example, i am working on a city builder, when the ...
0
votes
1answer
19 views
C++ Builder XE4 - autocompletion and syntax errors highlighting
I am new to C++ Builder. I am trying out the XE4 version, but it doesn't seem to have autocompletion for include or checking and underlining a bad syntax like for example VS does. So I can put any ...
2
votes
2answers
42 views
How can I ensure my bean is built correctly?
I'm building a JavaBean (only fields and getters/setters) using the builder pattern.
For the sake of this example, assume this is our bean:
public class Pizza {
private int size;
private boolean ...
0
votes
0answers
36 views
oracle report builder 6i - sql query code in Data Model
I'm Vijetha,
I'm working on Reports 6i & am very new to it. I have the following query.
In the front_end, in Reports Parameter, When the user clicks on the 'run' button, it will ask for ...
0
votes
1answer
27 views
Typo3 6.0 - Extending EXT:news
I am new in Typo3, and I tried to extend News following this tutorial : http://docs.typo3.org/typo3cms/extensions/news/Main/Tutorial/ExtendingNews/Index.html
My main goal is to create a new ...
-1
votes
1answer
40 views
Adding a custom image to AlertDialog [ANDROID]
I'm trouble trying to add an image to an AlertDialog. This image is not always the same, it's different everytime.
What i'm trying to do, is adding an image to the AlertDialog (if it's possible as an ...
0
votes
2answers
28 views
Alert Dialog box being dismissed when parameters are not correct
I have a dialog box being displayed as soon as the MainActivity is started. It prompts the user to enter 2 parameters, a table number and a cover number. Then they confirm and these parameters are ...
0
votes
0answers
7 views
EAccesViolation error keeps coming up in Builder C++
i would like to ask while i m compiling my project in Builder i m getting an Error messsage
and its the following picture ->![The error is in the WHILE stattment ][1]
...
0
votes
0answers
25 views
TomCat start-up errors with my mobile FB flex app. Connection problems or configuration?
I am using flash builder 4.6. I am starting up TomCat using startup.bat
I've tried searching for 2 days now anything that relates to this error and the search results did not seem to relate to my ...
-1
votes
1answer
29 views
jQuery / Javascript - Create your own … feature
what is the name of a feature (maybe jQuery/js/Ajax) that allows you to build your own item,
here is a sample http://www.bluenile.com/build-your-own-diamond-ring
is there a plugin / library to have ...
0
votes
0answers
23 views
show & hide only one component with jsplitpane
I've been trying to use the JSplitPane, just to see how it works. When enabling the oneThouchExpandable property I saw that BOTH components (rigth or left / top or bottom) can be hidden at first when ...
0
votes
1answer
30 views
How to produce immutable DTOs without explicitly using a constructor?
Suppose I have a DTO class:
public class SomeImmutableDto {
private final String someField;
private final String someOtherField;
public SomeImmutableDto(String someField, String ...
0
votes
0answers
12 views
GameCenter OSX how to link to button
So I read apples documentation and to get rolling... I got their code to work... by fixing my header to the window in Interface Builder... Now I am completely lost as to how to either create or find ...
-1
votes
0answers
15 views
C++ builder and java Functions ?
i would like to ask is their an similiar function in C++ builder like Java's actionlistener function getSource() or how could i implement this?
Thanks
1
vote
2answers
41 views
Can a Constructor Use a Builder
I am refactoring a class to use a builder with a private constructor instead of public constructors. I want to have the old, deprecated, public constructors use the builder as shown below. (this is an ...
1
vote
0answers
31 views
cannot debug on device flash builder
I have spent a lot of time to develop a game for android devices in flash builder.
It works fine on the emulator. But when I connect my Samsung Galaxy Ace Plus, which is on the certified devices ...
0
votes
2answers
35 views
Embarcadero Cannot cast from 'UnicodeString' to 'unsigned char *'
I'm using Embarcadero's C++ builder XE
String command1 = "FREQ ";
String command2 = " Mhz\n";
int index = Form1->ListBox1->ItemIndex;
String full = command1.operator ...
0
votes
2answers
81 views
Create new object with Builder pattern with “old” object reference
I am playing around with the Builder pattern and get stuck how to add a new "property" to a new-created object:
public class MsProjectTaskData {
private boolean isAlreadyTransfered;
private ...
0
votes
1answer
83 views
Easiest way to convert UnicodeString to const char* in c++?
I'm new in c++ and have problem with converting UnicodeString to string, so now searching for easiest method to convert from one type to other.
I want to use basic windows function which needs string ...
0
votes
2answers
46 views
How does Greg Young's Fluent Interface work?
I'm trying to follow along this article: http://codebetter.com/gregyoung/2007/12/05/a-use-for-extension-methods/
I follow along fine up to this point:
Now that I have these I can decorate the ...
0
votes
1answer
26 views
Report Builder 3 - Multiple results with one dataset
Good Morning I am new to Report Builder 3 and was wondering if you could help with a problem I have.
I have a stack of data and I want to be able to create a single report, this report will have two ...
1
vote
1answer
118 views
Laravel:Difference between Schema builder and Eloquent anyone?
I am new to Laravel. So If I can generate tables using Schema builder and then query data using queries like DB::table('user')->find(1), where does Eloquent fit in the whole scene? What purpose ...
0
votes
1answer
63 views
What is Fast&Easy way to migrate Flex 3.5/4 Web App to Flash Builder 4.6 for Mobile iOS?
I currently have a fully working web app built in Flex 3.5/4 using java back end with Spring Framework using TomCat.
I need to migrate or convert this project into Flash Builder 4.6 to create a ...
0
votes
2answers
104 views
symfony2 build form entity oneToMany
I am learning symfony framework and have a big problem.
I have two database table: category (primary key: categoryid) and product (primary key: productid and foreign key: category_categoryid).
In ...
0
votes
1answer
47 views
ADO database - how to edit
I want my server application to have the possibility to edit the database that i have created, when a client wants me(server) to edit something of his. Database table is quite simple, i need to know ...
1
vote
1answer
65 views
How do you extend a set of Integers in Scala?
How do I write a custom set of integers in Scala? Specifically I want a class with the following properties:
It is immutable.
It extends the Set trait.
All collection operations return another ...
1
vote
1answer
45 views
How do I specify a newBuilder for a scala set?
I am trying to extend a set of integers in Scala. Based on an earlier answer I have decided to use a SetProxy object. I am now trying to implement the newBuilder mechanism as described in chapter 25 ...
0
votes
0answers
19 views
Report Builder - nonbreaking space
When formatting text boxes or Expressions, how do I format non-breaking spaces (or hypens)?
0
votes
1answer
128 views
Best practice: Spring Autowired, concrete class, and Builder
We have an interface:
public interface NotifyService {
public void send();
And a class that implements it
public class EmailNotifyService implements NotifyService {
private EmailBuilder ...
2
votes
2answers
74 views
A simple builder pattern in Scala
I'm implementing a very simple builder pattern for a map-like container:
trait KeyValueContainer[K,V] {
private var props: Map[K, V] = new HashMap[K, V]
private var built = false
/**
* Adds ...
4
votes
3answers
148 views
Borland string::find bug
I'm supporting a C++ application written using Borland C++ Builder 5.02 (from 1997). The find() method on the Borland string class does not behave how I would expect:
#include <cstring>
...
0
votes
0answers
50 views
Can't configure ASP.NET to work in Flash Builder 4.6
Every time I attempt to create a new project using ASP.NET I get an error message, "You don't have ASP.NET development server installed". I'm sure I do, I have both Visual Studio 2012 and 2010 ...
0
votes
1answer
59 views
Install WinCe 6.0 os on vortex86 based device
I need to install WinCe 6.0 on Vortex86 device and then write application to it.
I used Platform Builder and built OS based on Vortex86 BSP. How can I install it on my Vortex based device? (It has ...
3
votes
1answer
142 views
How to fetch liferay entity through custom-finder in custom plugin portlet?
How can we fetch liferay entities through custom-finder using custom SQL?
Following is my sql query written in default.xml (I have trimmed down the query to the bare minimum so that the logic ...
0
votes
0answers
25 views
How do website builders host the websites the clients build?
I am developing a SaaS softeware service to allow uses to create websites and then publish to a chosen available domain (querying & registering domains can be done using api provided by a domain ...
1
vote
3answers
45 views
Xcode Scene Dock hidden
My scene dock is hidden... How can I make it visible? The red one is missing
0
votes
1answer
28 views
How to stop or remove videostream from Flash Builder View
I'm having problems getting the video stream generated by this view to stop once the user either attempts to click the back button or changes view. Can someone help us figure how to add a stop to the ...
0
votes
1answer
112 views
Taking substring from string between " sign // C++ Builder
I've got problem with following task. I need to load output txt data from other program to my one and search it for following string:
"zhi": 97.92716217041016,
and especially numerical value ...
0
votes
1answer
94 views
Blurry charts and rotated text in SSRS
I am having a heck of a time trying to fix the output of SSRS to look good when it renders in IE of all things. It looks nice and crisp in FireFox and Report Builder 3, but it just gets trashed ...
1
vote
2answers
49 views
Builder pattern with error-checking: is it possible/advisable?
I am using the Builder pattern to make it easier to create objects. However, the standard builder pattern examples do not include error-checking, which are needed in my code. For example, the ...
-5
votes
2answers
52 views
Website Builder For Clients [closed]
I'm looking for an open source platform that will allow my clients to create a website and choose a template for it. Very much like wix.com.
Is there any solution for this?
0
votes
1answer
49 views
Eclipse Builders: Verify Return Code?
So, our java codebase is so complex that we can't use Eclipse's incremental compilation feature and instead use a script called "intern" with argument build. Because of this, I added a program builder ...
0
votes
0answers
104 views
How can i create an unsigned apk from Flash Builder 4.6?
i have create an app with FB 4.6 and i have to generate an unsigned apk (not airi) file to send to the client. He will sign before with his own digital signature. I have googled this problem with no ...
0
votes
1answer
53 views
Ruby builder xml
I am using Builder to create xml in Ruby. It works fine when I call the generate_object method twice. However, when doing it in a loop I am getting some weird results. The input is the same both ...
0
votes
1answer
225 views
Symfony exception KNPMenu builder does not exist for menu builder
I try the KnpMenu tutorial to create a menu, and use it with bootstrap in Symfony.
It works perfectly in local mode, but when I try it on my server (both in dev mode) it don't works, I have this error ...
5
votes
2answers
133 views
Can I use the builder pattern on a Java Enum
I'm re-writing some code, and I've decided the way to recreate the class, as there are a fixed number of sheets, I'm creating them as enums. This is a decision based on the readability of a builder ...
0
votes
0answers
87 views
Any recommendations of dynamic Telerik form builder? [closed]
Any recommendations of dynamic Telerik form builder?
I would like to see the Rich UI in the Form builder with support of all existing controls available in the Telerik control facotry.


