Tagged Questions
The builder tag has no wiki summary.
52
votes
11answers
15k views
When would you use the Builder Pattern? [closed]
What are some common, real world examples of using the Builder Pattern? What does it buy you? Why not just use a Factory Pattern?
24
votes
15answers
5k views
Rails 3 install error: “invalid value for @cert_chain”
I'm trying to install Rails 3 on a new OS X Snow Leopard machine (with dev tools installed), and when I sudo gem install rails, I get the following error:
ERROR: While executing gem ... ...
10
votes
7answers
7k views
Need a GUI Builder for Tkinter / Python
I need a GUI Builder for Tkinter... was using something a couple of years ago, but I can't find it anymore (I remember something related to Komodo IDE, but perhaps I'm wrong).
Please don't give me ...
9
votes
5answers
2k views
How to build an XML document in Java concisely?
I need to build an XML document from a Java object hierarchy. Both the Java classes and the XML format are fixed. So I can't use an XML serializer like XStream: it bases the XML format on the Java ...
8
votes
1answer
248 views
How to set Interface Builder document versioning default to 4.2?
When I create a new xib in interface builder the Interface Builder Document (Versioning) development parameter is defaulting to xCode 4.1
Is there anyway to default this to xCode 4.2 - The reason I ...
8
votes
5answers
879 views
Why doesn't Bloch's Builder Pattern work in C#
Consider a verbatim copy of Bloch's Builder pattern (with changes made for C#'s syntax):
public class NutritionFacts
{
public int ServingSize { get; private set; }
public int Servings { get; ...
6
votes
4answers
181 views
JavaWorld on OO: Getters/Setters vs Builder
Background:
I found this article on JavaWorld, where Allen Holub explains an alternative to Getters/Setters that maintains the principle that the implementation of an object should be hidden (his ...
6
votes
2answers
2k views
Rails 3/Cucumber problem: “…already activated builder 3.0.0, but your Gemfile requires builder 2.1.2”
I've been using cucumber without trouble for with Rails 3 for a while, but after a whole bunch of tinkering today (including gem cleanup), I get the following error whenever I run "cucumber features"
...
6
votes
6answers
258 views
Builders in Java versus C++?
In Google's Protocol Buffer API for Java, they use these nice Builders that create an object (see here):
Person john =
Person.newBuilder()
.setId(1234)
.setName("John Doe")
...
6
votes
6answers
1k views
Design Pattern: Builder
I have looked for a good example of a Builder pattern (in C#), but cannot find one either because I don't understand the Builder pattern or I am trying to do something that was never intended. For ...
6
votes
2answers
734 views
Builder design pattern with inheritance: is there a better way?
I'm creating a series of builders to clean up the syntax which creates domain classes for my mocks as part of improving our overall unit tests. My builders essentially populate a domain class (such ...
5
votes
4answers
138 views
What is the most concise way to construct/build JavaBean objects in Scala?
Let's say Product is in a Java library that I can't tweak, so to instantiate it by calling setters:
val product = new Product
product.setName("Cute Umbrella")
product.setSku("SXO-2")
...
5
votes
1answer
205 views
creating large file xml in ruby
I want to write some data to XML file ( XML file would come to ~50 MB ).
I found nokogiri (1.5.0) gem to be the most efficient to parse (Just read and not write). Nokogiri is not a good option to ...
5
votes
1answer
1k views
Rails 3 Installation Hangs at Gem Builder with “unable to convert ”\xF1“ from ASCII-8BIT to UTF-8”
I followed this tutorial http://pragmaticstudio.com/blog/2010/9/23/install-rails-ruby-mac to install Ruby on Rails on Mac OS X (Lion 10.7).
Everything went fine until I installed Rails with rvm (v. ...
5
votes
2answers
111 views
How should I implement a dynamic list of builders?
I'm writing code that builds a UserProfile object from a Map of Strings. At the moment I'm dividing the code into several Builder objects that build parts of the user profile, something like this:
...
5
votes
2answers
779 views
Spring: Using builder pattern to create a bean
I use ektorp to connect to CouchDB. The way to build an ektorp HttpClient instance is to use builder pattern:
HttpClient httpClient = new StdHttpClient.Builder()
...
5
votes
2answers
579 views
Java generics + Builder pattern
How do I call start() below?
package com.example.test;
class Bar {}
public class Foo<K>
{
final private int count;
final private K key;
Foo(Builder<K> b)
{
...
5
votes
4answers
2k views
Design view disappeared from Interface Builder
All of a sudden, the visual design window disappeared from my Interface Builder. It is a regular UIView, has some UIImageView, UILabel, and UIButtons on it. When I open IB, I can see the document ...
5
votes
3answers
206 views
Is there a memory and performance hit taken from using Bloch's Builder Pattern?
What is the memory and performance usage compared to creating a object with only a constructor?
The usage here is in creating a Set<Object> or List<Object> that may contain million ...
5
votes
1answer
2k views
Eclipse - What is exactly a Builder?
I don't understand what is exactly a builder in CDT, and what is the relationship with the "C/C++ Build" content.
I set up SCons in the "C/C++ Build" confuguration. It does work : I made two ...
4
votes
3answers
252 views
Rails+Builder.Generate XML output without entities
How to make Builder to not encode 'śćż' and other such characters.
What I want is 'całość' to be literally printed in XML document.
Example:
xml.instruct! :xml, :version => '1.0', :encoding => ...
4
votes
2answers
334 views
Extra <to_s/> when using builder to generate KML
I'm trying to generate KML using Builder. I know their are some options out there to help with this but I will be doing some 2.2 specific things that aren't supported by the KML gems I've looked at ...
4
votes
1answer
3k views
How to access attributes using Nokogiri
I have a simple task of accessing the values of some attributes. Below is a simple script that uses Nokogiri::XML::Builder to create a simple xml doc.
require 'nokogiri'
builder = ...
4
votes
1answer
1k views
Ruby XML::Builder with hyphen in Element name
I'm trying to generate some XML using XML::Builder, but my element names need to have hyphens in it.
When I try I get undefined methods, with the element name being truncated at the hyphen
...
4
votes
3answers
1k views
adding html to my RSS/Atom feed in Rails
The default rails XML builder escapes all html so something like:
atom_feed do |feed|
@stories.each do |story|
feed.entry story do |entry|
entry.title story.title
...
3
votes
1answer
53 views
Specific Builder for Parameterized Type
I'm trying to write a class in scala that wraps a (parameterized) collection and overrides it's foreach method. What it does with the foreach method is unimportant for the purpose of this question, ...
3
votes
1answer
24 views
should the builder reset its build environment after delivering the product
I am implementing a builder where in the deliverable is retrieved by calling Builder::getProduct() . The director asks various parts to build Builder::buildPartA() , Builder::buildPartB() etc. in ...
3
votes
1answer
99 views
Best approach (pattern?) to create view objects, from different resources
Currently I am constructing a view object from a search result (which comes from a different single resource) like this:
ViewObject vo = searchResultToViewObjectMapper.map(searchResult);
This works ...
3
votes
1answer
88 views
Using a Builder class to recreate child object set using DI?
I have a Request class that is used to retrieve a file resource from an external process, using a method RetrieveResource(). This method takes approximately 10-15 seconds to complete. In addition, the ...
3
votes
1answer
232 views
Java Builder pattern and a “deep” object hierarchy
What is the best practice for using Builder pattern in "deep" object hierarchies? To elaborate, I explored the idea of applying the Builder pattern as proposed by Joshua Bloch, to my XML binding code ...
3
votes
1answer
363 views
Predicate Builder for Fetched Properties?
Does anyone know how to access the Predicate Builder for fetched properties in Xcode 4? The docs indicate that one needs to access it through the "The Browser View", but I thought this view went out ...
3
votes
3answers
597 views
Flash Builder 4 suddenly stops doing auto-complete for some classes
A project we've been working on for weeks in Flash Builder suddenly has stopped being navigable: all the nice features of Flash Builder like auto-completion, jump to definition, even search for ...
3
votes
4answers
282 views
Can I have an abstract builder class in java with method chaining without doing unsafe operations?
I'm trying to have an abstract base class for some builder classes so I can easily reuse code between the Builder implementations. I want my builders to support method chaining therefore a method has ...
3
votes
2answers
640 views
Python 3 - Tkinter GUI Builder
there are a number of tkinter builders out there but none (that I've found) that work for python 3. So I thought I would raise the question here ... I don't have time to learn tkinter and dont use it ...
3
votes
2answers
383 views
StringBuilder and Builder Pattern
I'm new in Design Patterns so I have one question about the Builder Pattern.
Today I heard that Builder Pattern is different from the class StringBuilder in Java, C#. I know that main goal of the ...
3
votes
4answers
426 views
Does using curly braces go against the “Ruby way”?
I've been using Ruby for about two weeks, and I've not been programming for too terribly long, but I'm coming at the language from a C-style background (C++, C#, etc). Anyway - a good friend and ...
3
votes
1answer
778 views
Make a Flex/AIR scroller with an HGroup “snap” to each item when scrolling completes
I'm developing an app for ANDROID devices using Flash Builder Burrito and am having trouble figuring out how to accomplish one aspect of my app.
I have an HGroup inside of a Scroller. The HGroup has ...
3
votes
5answers
171 views
Java: how to deal with “almost” immutable data structures?
Immutable objects are great because they require no special care or feeding in multi-threaded applications. However many objects fall just short of being naturally immutable. For example, an order ...
3
votes
0answers
73 views
nBuilder alternative for Java
Is there any tool like nBuilder for java?
I want to build objects for unit testing and I dont want to have one builder class for each entity in my domain.
I am currently using mockito but it doesnt ...
3
votes
2answers
2k views
Flash Builder 4 - Flash Player failed to connect to debugger
I just finished my installation of Adobe Flash Builder 4. I've definitely installed the most recent flash player from Adobe's website onto my computer. Also, in the run configurations of flash builder ...
3
votes
1answer
795 views
How to save ruby builder generated xml instead of rendering it in rails application?
I have a builder that renders xml when create is called. How can I skip the rendering step, but save the xml to the filesystem?
def create
@server = Server.new(params[:server])
respond_to ...
3
votes
1answer
264 views
Include a ColdFusion report template in another ColdFusion report template
Is there a way to include/wrap PDF data generated from a ColdFusion template inside another ColdFusion template, or a cfdocument tag?
I'm working with a system that has generates lots of different ...
3
votes
4answers
395 views
Using Flash Builder to create a collection of AS3 classes
How can I set up a project in Flash Builder for creating a collection of classes that is not an application by itself? When creating an Actionscript project it forces having a main application file, ...
3
votes
3answers
2k views
Comparison of Hudson, CDash, CruisonControl, TeamCity for Continuous Integration / Builder
I found most people talk about Hudson for simple and free continuous integration. Now personally I'm not fond of its interface which I find very messy, and I found almost no one talking about CDash -- ...
2
votes
2answers
64 views
C# construction objects with builder
Fluent builder is a well-known pattern to build objects with many properties:
Team team = teamBuilder.CreateTeam("Chelsea")
.WithNickName("The blues")
.WithShirtColor(Color.Blue)
...
2
votes
2answers
119 views
Tiggr vs Application Craft
in the last months the development of mobile apps has become more and more a focus of mine. I already created a few apps with PhoneGap and also dived in into mobile frameworks like jQuery Mobile ans ...
2
votes
2answers
69 views
Best way to update multiple fields of a Java object
I want to update multiple fields of a Java object at once to perform a check on the update. My idea looks like this:
SomethingValues values = new SomethingValues();
values.name = "abc";
values.amount ...
2
votes
1answer
20 views
Can I export files from Adobe Flash Builder to Eclipse?
We are planning to design a mobile app using Flash Builder instead of using plug-ins in Eclipse... I mean the GUI only.
Is that possible to import Flash Builder files into Eclipse?
Thanks!
2
votes
2answers
304 views
UI Based Query Builder using jQuery
UPDATED!!
Breaking down the question as suggested.
I need to create a Look & Feel for a search application
I need to have the components displayed on the left hand side and on the right I can ...
2
votes
3answers
163 views
The builder pattern and a large number of mandatory parameters
To date I use the following implementation of the builder pattern (as opposed to the implementation described here):
public class Widget {
public static class Builder {
public ...