active questions tagged builder - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T01:19:44Zhttp://stackoverflow.com/feeds/tag/builderhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1020828/how-to-build-an-xml-document-in-java-concisely1How to build an XML document in Java concisely?Jim Ferrans2009-06-20T03:02:19Z2009-12-11T15:38:52Z
<p>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 <a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a>: it bases the XML format on the Java classes. Likewise, a Java XML binding technology like <a href="https://jaxb.dev.java.net/" rel="nofollow">JAXB</a> won't work, since it creates Java classes from the XML schema [ed: but see below]. I need a manual approach.</p>
<p>The low-tech StringBuilder route results in fragile and buggy code (at least for me!).</p>
<p>An API like <a href="https://jaxp.dev.java.net/" rel="nofollow">JAXP</a> or <a href="http://www.jdom.org/index.html" rel="nofollow">JDOM</a> leads to much more robust code, but these are pretty verbose.</p>
<p><a href="http://groovy.codehaus.org/" rel="nofollow">Groovy</a> has an elegant <a href="http://groovy.codehaus.org/Creating+XML+using+Groovy%27s+MarkupBuilder" rel="nofollow">MarkupBuilder</a>:</p>
<pre><code>def writer = new StringWriter()
def xml = new MarkupBuilder(writer)
xml.records() {
car(name:'HSV Maloo', make:'Holden', year:2006) {
country('Australia')
record(type:'speed', 'Production Pickup Truck with speed of 271kph')
}
car(name:'P50', make:'Peel', year:1962) {
country('Isle of Man')
record(type:'size', 'Smallest Street-Legal Car at 99cm wide and 59 kg')
}
}
</code></pre>
<p>Other languages (eg. <a href="http://builder.rubyforge.org/" rel="nofollow">Ruby</a>) have even better ones, though I want to stay with pure Java. There do seem to be some new XML builders for Java, such as <a href="http://sourceforge.net/projects/practicalxml/" rel="nofollow">practicalxml</a> and Google's <a href="http://code.google.com/p/java-xmlbuilder/" rel="nofollow">xmlbuilder</a>.</p>
<p>What are the more elegant approaches for building XML documents in Java?</p>
<p><strong>Summary:</strong></p>
<p>Jon Doe suggested <a href="http://www.dom4j.org/" rel="nofollow">dom4j</a> and <a href="http://www.jdom.org/index.html" rel="nofollow">jdom</a>.</p>
<p>CurtainDog recommended using JAXB anyway, and jherico clued me in that this was a pertinant suggestion: you could then use Dozer to map between my current JavaBeans and the JAXB JavaBeans.</p>
<p>thaggie recommends <a href="http://jibx.sourceforge.net/" rel="nofollow">JIBX</a> and agreed with CurtainDog and jherico that binding technologies are actually practical.</p>
<p>StaxMan recommends <a href="http://staxmate.codehaus.org/Tutorial" rel="nofollow">StaxMate</a>.</p>
<p>Of the stuff I've looked at, practicalxml and Google's xmlbuilder seem to be the most concise builders, though are rather newish. The binding technologies like JAXB seem to offer extra safety/automation. Of the mainstream choices, <a href="http://www.dom4j.org/" rel="nofollow">dom4j</a> seems decent, though still kind of verbose. It offers a "fluent interface" (mutators return a reference to the mutated object so they can be chained together), which I like:</p>
<pre><code>public Document createDocument() {
Document document = DocumentHelper.createDocument();
Element root = document.addElement( "root" );
Element author2 = root.addElement( "author" )
.addAttribute( "name", "Toby" )
.addAttribute( "location", "Germany" )
.addText( "Tobias Rademacher" );
Element author1 = root.addElement( "author" )
.addAttribute( "name", "James" )
.addAttribute( "location", "UK" )
.addText( "James Strachan" );
return document;
}
</code></pre>
<p>For conciseness, you could wrap a thin facade over this API to provide terse synonyms for some of these methods (eg, attr() instead of addAttribute()).</p>
<p>Thanks all!</p>
<p>P.S.: Stephan Schmidt worked on a Java <a href="http://codemonkeyism.com/the-best-markup-builder-i-could-build-in-java/" rel="nofollow">MarkupBuilder</a>, though seems not to have published it.</p>
http://stackoverflow.com/questions/1859121/create-groovy-xml-with-an-envelop-add-nodes-in-the-middle-of-a-xml-structure1Create groovy xml with an "envelop" - add nodes in the middle of a xml structureMarty2009-12-07T10:24:13Z2009-12-07T12:55:37Z
<p>Hi all,</p>
<p>(sorry for the weird title...)</p>
<p>I want to use the groovy builder system to create a xml.</p>
<p>My problem is that i want to have some kind of envelop around, which the user dont has to care about.</p>
<p>An example:</p>
<pre><code>def builder = new groovy.xml.MarkupBuilder()
builder.foo() {
bar('hello')
}
</code></pre>
<p>this should create lets say</p>
<pre><code><Something id:'123'>
<AnyInfo>
<foo>
<bar>hello</bar>
</foo>
</AnyInfo>
</Something>
</code></pre>
<p>so that there is a xml structure in the background in which the user can add his xml structure at a predefined node (in the example 'AnyInfo')</p>
<p>How does the builder has to look like, that I can add nodes with the markupbuilder (or any other builder) somewhere in the middle of the envelop ?</p>
<p>I hope this was somehow understandable ?!</p>
<p>THANKS
Marty</p>
http://stackoverflow.com/questions/1833786/rails-xml-builder-code-refactoring0Rails XML Builder - Code refactoringVijay Dev2009-12-02T15:51:14Z2009-12-03T19:32:34Z
<p>I have written the following code in my Rails app to generate XML. I am using Aptana IDE to do Rails development and the IDE shows a warning that the code structure is identical in both the blocks. What changes can be done to the code to remove the duplicity in structure? Is there any other way to write the same?</p>
<pre><code>xml.roles do
@rolesList.each do |r|
xml.role(:id => r["role_id"], :name => r["role_name"])
end
end
xml.levels do
@levelsList.each do |lvl|
xml.level(:id => lvl["level_id"], :name => lvl["level_name"])
end
end
</code></pre>
http://stackoverflow.com/questions/1837171/special-characters-with-ruby-xml-builder1Special characters with Ruby XML BuilderArt Vandelay2009-12-03T01:51:06Z2009-12-03T02:45:10Z
<p>I'm trying to a Google kml tour with ruby and I get a syntax error with this code</p>
<pre><code>xml = builder.gx:Tour
</code></pre>
<p>It doesn't like the colon. Is there a way to force it to compile this?</p>
http://stackoverflow.com/questions/1831834/creating-online-form-builder-4creating Online form buildernitin6462009-12-02T09:49:59Z2009-12-02T10:13:07Z
<p>Is it possible to create clone of the site <a href="http://jotform.com/" rel="nofollow">http://jotform.com/</a> using asp.net</p>
<p>I tried using jquery and asp.net,
Creating the user interface is okay,</p>
<p>but i'm stuck in managing the backend
e.g.
the form will have variable number of fields and the variable number of fields will be saved in the database</p>
<p>saving-retrieving-managing form submission</p>
http://stackoverflow.com/questions/1787409/external-content-with-groovy-buildersupport0External Content with Groovy BuilderSupportChad2009-11-24T02:27:59Z2009-11-25T17:44:00Z
<p>I've built a custom builder in Groovy by extending BuilderSupport. It works well when configured like nearly every builder code sample out there:</p>
<pre><code>def builder = new MyBuilder()
builder.foo {
"Some Entry" (property1:value1, property2: value2)
}
</code></pre>
<p>This, of course, works perfectly. The problem is that I don't want the information I'm building to be in the code. I want to have this information in a file somewhere that is read in and built into objects by the builder. I cannot figure out how to do this.</p>
<p>I can't even make this work by moving the simple entry around in the code.
This works:</p>
<pre><code>def textClosure = { "Some Entry" (property1:value1, property2: value2) }
builder.foo(textClosure)
</code></pre>
<p>because textClosure is a closure. </p>
<p>If I do this:</p>
<pre><code>def text = '"Some Entry" (property1:value1, property2: value2)'
def textClosure = { text }
builder.foo(textClosure)
</code></pre>
<p>the builder only gets called for the "foo" node. I've tried many variants of this, including passing the text block directly into the builder without wrapping it in a closure. They all yield the same result.</p>
<p>Is there some way I take a piece of arbitrary text and pass it into my builder so that it will be able to correctly parse and build it?</p>
http://stackoverflow.com/questions/1767970/ruby-xmlbuilder-with-hyphen-in-element-name0Ruby XML::Builder with hyphen in Element nameaussiegeek2009-11-20T02:37:28Z2009-11-20T03:47:40Z
<p>I'm trying to generate some XML using XML::Builder, but my element names need to have hyphens in it.</p>
<p>When I try I get undefined methods, with the element name being truncated at the hyphen</p>
<pre><code>xml.instruct!
xml.update-manifest do
xml.latest-id @latest_version_update.guid
xml.download-url @latest_version_update.download_url
xml.release-information-url version_guid_url(@latest_vesrion_update.guid)
end
</code></pre>
<p>The fixed version is</p>
<pre><code>xml.instruct!
xml.tag! 'update-manifest' do
xml.tag! 'latest-id', @latest_version_update.guid
xml.tag! 'download-url', @latest_version_update.download_url
xml.tag! 'release-information-url', version_guid_url(@latest_vesrion_update.guid)
end
</code></pre>
http://stackoverflow.com/questions/1693939/need-a-gui-builder-for-tkinter-python1Need a GUI Builder for Tkinter / Pythonunknown (google)2009-11-07T18:18:00Z2009-11-14T11:08:08Z
<p>Hello, 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 links to non-functional, old or dead projects, because I found lots of them and none worked; I need something functional. Also, I don't want builders for pygtk/pyqt/other toolkits.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1635737/how-to-share-constants-between-interface-builder-and-the-code0How to share constants between Interface Builder and the code ?Unfalkster2009-10-28T07:55:57Z2009-11-14T10:00:01Z
<p>I wonder if there is a way to use constants in Interface Builder, in order to avoid manually setting the same color at different places for example (it could be a very tedious job sometimes...)</p>
<p>Currently I set the color in the code and use #define to setup the color, but obviously IB can't use #define...</p>
http://stackoverflow.com/questions/1489083/how-do-i-prevent-a-builder-template-from-escaping-a-url-in-an-attribute-value0How do I prevent a Builder template from escaping a URL in an attribute value?James A. Rosen2009-09-28T20:04:56Z2009-11-11T11:00:05Z
<p>I have a Rails Builder template:</p>
<pre><code># in app/views/foos/index.xml.builder:
xml.Module do |mod|
...
mod.Content :type => 'url',
:href => foos_url(:bar => 'baz',
:yoo => 'hoo')
end
</code></pre>
<p>(It creates the XML for an OpenSocial Module file, but that's not important.)</p>
<p>The problem is that the rendered XML looks like this:</p>
<pre><code><Module>
...
<Content type="url" href="http://myapp.com/foos?bar=baz&amp;amp;yoo=hoo"/>
</Module>
</code></pre>
<p>That URL suffix should be "<code>bar=baz&yoo=hoo</code>." How do I keep Builder from escaping the amerpsand?</p>
<p><strong>Later</strong></p>
<p>Perhaps the URL suffix should be "<code>bar=baz&amp;yoo=hoo</code>" in the source for XML-validity rules, but certainly it shouldn't be <em>double</em>-escaped, should it?</p>
http://stackoverflow.com/questions/1660820/sharepoint-web-application-creation-using-the-object-model0Sharepoint web application creation using the object modelNathan2009-11-02T11:46:27Z2009-11-02T12:42:15Z
<p>I am using the webapplicationbuilder class to create a new web application and have found many articles that help with this, none however seem to specify how you designate the URL or the application, i just get "sharepoint - 123" where 123 is the port specified and "servername/:123" as the url, whereas i need "http://myserver/.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1638677/builder-or-some-other-pattern-to-always-create-instance-in-valid-state0Builder or some other pattern to always create instance in valid stateepitka2009-10-28T17:09:27Z2009-10-28T17:52:25Z
<p>I have a very complicated setup of objects and each selection along the way limits or expands options available. I would hate to throw exceptions or to create invalid instance of the object.
So, I want to limit options (methods available to invoke) when building an instance based on the previous method input paramters. For example if I have some rules that say if user is of type "A" then allow it to be added to roles otherwise if it is of type "B" ask for location and if location is in specific zip code ... You get the idea</p>
<p>Is this possible with anonymous methos, types, whatever</p>
<p><strong>user type A</strong></p>
<pre><code>UserBuilder builder = new UserBuilder
builer.Build().ForType("A").WithRoles(rolesList);
</code></pre>
<p><strong>user type B</strong></p>
<pre><code>UserBuilder builder = new UserBuilder
builer.Build().ForType("B").WithLocations(locationList);
</code></pre>
<p>Update:
So basically my question is, Is there a way to limit all other public method options from the api, except for the valid ones based on the state of the object.</p>
http://stackoverflow.com/questions/1637690/replace-keystroke-in-borland-c-builder-60Replace keystroke in Borland C++ Builder 6unknown (google)2009-10-28T14:39:04Z2009-10-28T14:50:21Z
<p>Hi.</p>
<p>I must replace keystroke when user typing in TextBox.
When user type 123,456,789 text box must contain 123.456.789.</p>
<p>Please HELP.</p>
http://stackoverflow.com/questions/1574007/building-flex-project-with-unit-testing-on-cruise-control1BUilding Flex project with unit testing on cruise controlShyam2009-10-15T17:51:01Z2009-10-21T18:15:45Z
<p>Hi,</p>
<p>I have a flex application build with actionscript 3 on flex builder with unit testing on it using flexUnit4. I want to build this project on my cruise control and i don't know how?</p>
http://stackoverflow.com/questions/1595051/good-site-builder0Good Site Builderpsergiu2009-10-20T14:33:28Z2009-10-20T14:54:31Z
<p>Hi,</p>
<p>I am currently working on a website and i kinda need something like a cms/site builder to be integrated int the site, but not very complicated.
for example let's say i have a few templates and the users can modify them as they please(add a picture, some text, etc)</p>
<p>Please help.</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1537438/flash-builder-4-blazeds-problem1Flash Builder 4 BlazeDS ProblemPii2009-10-08T12:13:27Z2009-10-13T10:11:03Z
<p>Currently, I'm trying to develop a rich internet application using Flash Builder 4 Beta</p>
<p>In Flash builder 4 BlazeDS can be connected directly using Data menu.</p>
<p>However, I face this problem where the program keep asking me to uncomment RDS Servlet, which I have already done so. Does anyone have similar problem?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1548130/zend-amf-for-flash-builder-40Zend Amf for Flash Builder 4thodoris2009-10-10T14:41:53Z2009-10-11T16:45:47Z
<p>I have created a flash builder 4 project and using the zend amf as the IDE suggests.
But now its time to test in a online apache enviroment.
It is any security risks?
Can i easily move or hide the zend amf?</p>
<p>thanks very much!</p>
http://stackoverflow.com/questions/1475415/having-trouble-building-c-project-in-eclipse-cdt-in-os-x-for-a-silly-reason0Having trouble building c++ project in Eclipse CDT in OS X for a silly reasonhdx2009-09-25T04:21:34Z2009-09-29T04:40:44Z
<p>I'm trying to build a very simple c++ program in eclipse and I'm getting a very silly error:</p>
<p><hr /></p>
<pre><code>**** Internal Builder is used for build ****
g++ -O0 -g3 -Wall -c -fmessage-length=0 -oMyFirst.o ../MyFirst.cpp
g++ -oLinkedLists MyFirst.o
ld: unknown option: -oLinkedLists
collect2: ld returned 1 exit status
Build error occurred, build is stopped
</code></pre>
<p>Time consumed: 403 ms. </p>
<p><hr /></p>
<p>The problem is that g++ in osx does not like the -o flag in the "g++ -oLinkedLists MyFirst.o" command right next to the executable file name... Does anybody know how to either configure g++ to accept that or how to configure the builder in eclipse such that there's a space between the -o flag and and file name like this: "g++ -o LinkedLists MyFirst.o"?</p>
<p>Thx in advance!</p>
http://stackoverflow.com/questions/1316020/rails-xml-builder-with-no-pretty-printing-i-e-minified-xml1Rails XML builder with no pretty-printing (i.e. minified XML)jhs2009-08-22T13:49:30Z2009-09-28T05:12:58Z
<p>I am using Builder::XmlMarkup to produce data structures in XML format for a RESTful API server.</p>
<p>Recently, I discovered a bug where the pretty-printing from Builder::XmlMarkup produced an element full of whitespace text instead of an empty element as it should.</p>
<p>For example, this code:</p>
<pre><code>xml.outertag do
xml.list do
# Some code which loops through a list
end
end
</code></pre>
<p>is producing:</p>
<pre><code><outertag>
<list>
</list>
</outertag>
</code></pre>
<p>When the inner list is an empty list, the element must be empty—i.e. <list/> or <list></list>. However the actual XML is a <list> tag filled with a newline and other whitespace.</p>
<p>So, how can I eliminate Builder pretty-printing altogether? Currently, I am thinking of monkey-patching Builder::XmlMarkup so that initialize ignores the <strong>:indent</strong> parameters; although I'm considering an after_filter as well.</p>
http://stackoverflow.com/questions/1410018/how-to-add-values-to-combobox-in-c-builder0How to add values to combobox in C++ Builder?okman2009-09-11T09:46:55Z2009-09-21T23:44:47Z
<p>I want to add values to combobox in C++ builder 6.
I know I can add string to combobox by string list editor.</p>
<p>For example, I have added this list to combobox:</p>
<pre><code>car
ball
apple
bird
</code></pre>
<p>I want behind each text, it has their own value, so I can get the value rahter than the text when user selected a text. Just like HTML select.</p>
<p>But when I try to add value to each text:</p>
<pre><code>ComboBox1->Items->Values[0] = "mycar";
ComboBox1->Items->Values[1] = "aball";
etc...
</code></pre>
<p>it will add more text to the list, like</p>
<pre><code>car
ball
apple
bird
0=mycar
1=aball
</code></pre>
<p>This is not what I want. I don't want the extra text to add to the list.
So, how can I add values to each text properly, and get the value?</p>
http://stackoverflow.com/questions/1108130/wrapper-library-builder-vs-factory-with-poco0Wrapper library - Builder vs Factory with POCONathan W2009-07-10T07:12:13Z2009-09-08T07:00:03Z
<p>I'm stuck between a rock and a hard place at the moment trying to decided on a good API layout for a .NET COM wrapper project I am working on. This is mainly a design problem and what would work better.</p>
<p>So I have this COM point object:</p>
<pre><code>public class COMPoint
{
internal COMPoint(MyComObject comobject) {}
public SomeCollection Nodes {get; set;}
}
</code></pre>
<p>now in order to make point object in my COM object I need to call a few string commands, and this is where I'm having trouble deciding where to point this.</p>
<p>Now I thought about using a POCO that has properties on it then pass it into some kind of factory method, something like this;</p>
<pre><code>public class Point
{
public SomeCollection Nodes {get;set;}
}
public class GeometryFactory
{
public GeometryFactory(MyComObject comobject) {}
public CreateCOMPointFrom(Point point)
{
// Do COM work here and return new COMPoint.
}
}
</code></pre>
<p>or using a builder pattern, something like:</p>
<pre><code>public class COMPoint
{
internal COMPoint(MyComObject comobject) {}
public SomeCollection Nodes {get; set;}
public class Builder
{
public Builder(MyComObject comobject) {}
public SomeCollection Nodes {get; set;}
public COMPoint Create()
{
// Do COM work here and return new COMPoint.
}
}
}
</code></pre>
<p>or a combination of both:</p>
<pre><code>public class COMPoint
{
internal COMPoint(MyComObject comobject) {}
public SomeCollection Nodes {get; set;}
public class Builder
{
public Builder(MyComObject comobject) {}
public SomeCollection Nodes {get; set;}
public COMPoint Create()
{
// Do COM work here and return new COMPoint.
}
public COMPoint CreateFrom(Point point)
{
// Set builder properties and call.
this.Create();
}
}
}
</code></pre>
<p>The idea behind using a POCO was so that people could create a point object using the good old</p>
<pre><code>Point point = new Point()
point.Nodes <- Set nodes
</code></pre>
<p>pass it around their code and then construct it and get back the one that goes back to the COM object.</p>
<p>Do you think any of these patterns have any credit in this situation?</p>
<p>I'm worried that if I have two different point objects it might confuse the user but then again the builder pattern isn't really that friendly either hmm what to do.</p>
<p>Of course the point object is the simplest object I have to create, there are a lot more objects that are a bit more complicated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/410500/using-reflection-to-instantiate-builder-pattern-joshua-bloch1Using Reflection To Instantiate 'Builder Pattern' (Joshua Bloch)Marvin Toll2009-01-04T05:15:39Z2009-08-15T18:00:02Z
<p>When attempting to use Joshua Bloch's "Builder Pattern" [Item 2 in <em>Effective Java Second Edition</em>] with reflection [<strong>object = constructors[index].newInstance(constructorParameterValues);</strong>] the following exception occurs:</p>
<p>java.lang.IllegalAccessException: Class info.soaj.core.util.SjUtilReflection can not access a member of class info.soaj.core.attribute.SjAttributesForThrowable with modifiers "private"</p>
<p>Note: This has been resolved. The accessible (private) constructor was being discarded and a non-accessible (override = false) was being attempted. Bottom Line: Programmer Error </p>
<p>An example Builder Class follows: </p>
<pre><code>package info.soaj.core.attribute;
import info.soaj.core.attribute.internal.SjAttributesForStronglyTypedWrappers;
import info.soaj.core.internal.string.SjPopulatedClassName;
import info.soaj.core.internal.string.SjPopulatedMethodName;
import info.soaj.core.util.internal.SjUtilThrowable;
import java.io.Serializable;
/**
* <p>
* The "Builder" pattern as documented by Joshua Bloch ("Effective Java" -
* Second Edition) is utilized to handle the variable number of required and
* optional parameters.
* </p>
*
* <p style="font-family:Verdana; font-size:10px; font-style:italic"> Copyright
* (c) 2006 - 2008 by Global Technology Consulting Group, Inc. at <a
* href="http://gtcGroup.com">gtcGroup.com </a>. </p>
*
* @author MarvinToll@gtcGroup.com
* @since v. 1.0
*/
public class SjAttributesExample implements Serializable {
/** UID */
private static final long serialVersionUID = 1L;
/** The name of class throwing the exception. */
protected final SjPopulatedClassName classname;
/** The name of method throwing the exception. */
protected final SjPopulatedMethodName methodname;
/**
* Suppresses logging; default is <code>false</code>.
*/
protected final boolean suppressLoggingOnly;
/**
* Constructor - private
*
* @param builderThrowable
*/
private SjAttributesExample(final BuilderThrowable builderThrowable) {
this.classname = builderThrowable.classname;
this.methodname = builderThrowable.methodname;
this.suppressLoggingOnly = builderThrowable.suppressLoggingOnly;
}
/**
* This static member immutable class is used to implement the builder
* pattern.
*
* @author MarvinToll@gtcGroup.com
* @since v. 1.0
*/
public static class BuilderThrowable {
/** Class name. */
private static final String CLASS_NAME = BuilderThrowable.class
.getName();
// Required attributes.
/** The name of class throwing the exception. */
protected final SjPopulatedClassName classname;
/** The name of method throwing the exception. */
protected final SjPopulatedMethodName methodname;
// Optional attributes.
/** Prevents action from occurring. Default is false. */
protected boolean suppressLoggingOnly = false;
/**
* Constructor
*
* @param classname
* @param methodname
*/
public BuilderThrowable(final String classname, final String methodname) {
super();
final String Method_Name = "BuilderThrowable";
// What happens when handling an exception throws an exception?
try {
this.classname = new SjPopulatedClassName(classname,
new SjAttributesForStronglyTypedWrappers(CLASS_NAME,
Method_Name));
this.methodname = new SjPopulatedMethodName(methodname,
new SjAttributesForStronglyTypedWrappers(CLASS_NAME,
Method_Name));
} catch (final RuntimeException e) {
// Log the contextual details.
SjUtilThrowable.logExceptionOccuredWhileThrowingException(
CLASS_NAME, Method_Name, e);
throw e;
}
return;
}
/**
* This method sets a flag to suppress logging.
*
* @param isLoggingSuppressed
* @return BuilderThrowable
*/
public BuilderThrowable suppressLoggingOnly(
final boolean isLoggingSuppressed) {
this.suppressLoggingOnly = isLoggingSuppressed;
return this;
}
/**
* This method is used for instantiating this class.
*
* @return SjAttributesForThrowable
*/
@SuppressWarnings("synthetic-access")
public SjAttributesExample build() {
return new SjAttributesExample(this);
}
}
/**
* This method returns an attribute.
*
* @return String - Returns the <code>classname</code> attribute.
*/
public String getClassname() {
return this.classname.getString();
}
/**
* This method returns an attribute.
*
* @return String - Returns the <code>methodname</code> attribute.
*/
public String getMethodname() {
return this.methodname.getString();
}
/**
* This method returns an attribute.
*
* @return boolean - Returns the <code>suppressLoggingOnly</code> attribute.
*/
public boolean isLoggingSuppressed() {
return this.suppressLoggingOnly;
}
}
</code></pre>
http://stackoverflow.com/questions/1080383/why-doesnt-blochs-builder-pattern-work-in-c3Why doesn't Bloch's Builder Pattern work in C#cdmckay2009-07-03T18:19:29Z2009-07-03T18:38:52Z
<p>Consider a verbatim copy of Bloch's Builder pattern (with changes made for C#'s syntax):</p>
<pre><code>public class NutritionFacts
{
public int ServingSize { get; private set; }
public int Servings { get; private set; }
public int Calories { get; private set; }
...
public class Builder
{
private int ServingSize { get; set; }
private int Servings { get; set; }
private int Calories { get; set; }
public Builder(int servingSize, int servings)
{
ServingSize = servingSize;
Servings = servings;
}
public Builder Calories(int calories)
{ Calories = calories; return this; }
public NutritionFacts Build()
{
return new NutritionFacts(this);
}
}
private NuitritionFacts(Builder builder)
{
ServingSize = builder.ServingSize;
Servings = builder.Servings;
Calories = builder.Calories;
}
}
</code></pre>
<p>If you try to run this, the C# compiler will complain that it doesn't have permission to access the private properties of Builder. However, in Java, you can do this. What rule is different in C# that prevents you from accessing private properties of nested classes?</p>
<p>(I realize that people have given alternatives <a href="http://stackoverflow.com/questions/313729/how-to-implement-and-extend-joshuas-builder-pattern-in-net">here</a> and that's great. What I'm interested is why you can't use the Java pattern without modification).</p>
http://stackoverflow.com/questions/886597/oracle-form-builder-switching-between-tabs-in-a-form1Oracle Form Builder: Switching between tabs in a formunknown (google)2009-05-20T07:25:52Z2009-05-20T13:28:13Z
<p>Hi guys,</p>
<p>i am building a form in oracle forms builder</p>
<p>i have a tabbed canvas</p>
<p>i need to know how to swap to the next tab when a button is pressed</p>
<p>so what do i program into the next-tab button??</p>
http://stackoverflow.com/questions/864855/populating-a-text-box-on-a-form-oracle0populating a text box on a form - oraclejoe2009-05-14T18:10:31Z2009-05-14T20:37:32Z
<p>Hi, I am using application builder in oracle - and I have a create new record form for the opening times of a cinema.</p>
<p>Basically at the moment I have it so you can put ina cinema id from a cinema table, but the problem is whith that you need to know the id - so its not very user friendly. I would like this id to be dynamically be put in to the form somehow by slecting the cinema name from a dropdown (I have managed to include the cinema dropdown) </p>
<p>How can i populate the form with the respective id based upn the choice of the select box in application builder?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/763897/ext-dependency-builder-in-popup-window0Ext Dependency Builder in POPUP windowbogdan2009-04-18T18:23:22Z2009-05-08T14:20:46Z
<p>Hi all,</p>
<p>I have a big problem that makes me go crazy ...
I want to add into a popup window a "Ext Dependency Builder" component ... using the components here:
"http://extjs.com/deploy/ext/docs/index.html"</p>
<p>dialog = new Ext.LayoutDialog("name1", {layout parameters})</p>
<p>where "name1" is the name of a div on my main jsp page.</p>
<p>I need to add a Ext.BorderLayout("name2", {layout parameters})
So I guess I should use another div with id="name2" ... does div name2 be included in name1 or how should I use them???</p>
<p>any help / exemples would be greatly appreciated :)</p>
<p>Thx!</p>
http://stackoverflow.com/questions/696027/design-pattern-builder5Design Pattern: BuilderDr. Zim2009-03-30T04:52:35Z2009-03-30T12:35:44Z
<p>I have looked for a <strong>good</strong> example of a <strong>Builder pattern</strong> (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 example, if I have an abstract automobile and abstract builder methods to create car parts, I should be able to send all 30 of my choices to the Director, have it build the pieces I need, then build my automobile. Regardless of which car, truck, semi, etc. produced, I should be able to "drive" it in exactly the same way.</p>
<p>First problem is most examples hard code property values in to the concrete parts, which I really think should come from a database. I thought the idea was to send my choices to the Director (from a data source) and have the builder create a customized product based on my data.</p>
<p>Second problem is I want the builder methods to actually create the parts then assign them to the product, not pass strings but real strongly typed product parts.</p>
<p>For example, I want to create a form on the fly by having a Builder manufacture form fields for me, including a label, an input section, validation, etc. This way I can read the object from my ORM, check out the object's metadata, pass this to my Builder and add the newly created user control result to my web form.</p>
<p>However, every Builder example I find only has hard coded data instead of passing choices from the main code to the Builder and kicking out a customized product. Everything seems to be a big static case statement. For example, if I have three parameters with 10 choices each, I don't want to build 30 concrete Builder methods, I want to create only enough to manufacture the properties my product requires, which may be only three.</p>
<p>I am tempted to have the Director exist in the main code only. There should be a way to automatically determine which concrete builder method to call similar to polymorphism and method overloads (although that is a very bad example) instead of using a case statement within the pattern. (Every time I need to add a new product type, I will need to modify the existing Director, which is bad).</p>
http://stackoverflow.com/questions/216138/sql-builder-for-php-with-join-support1SQL Builder for PHP, with JOIN support?David2008-10-19T07:36:26Z2009-03-24T20:48:23Z
<p>Hi,</p>
<p>Are any of you aware of a library that helps you build/manipulate SQL queries, that supports JOIN's?</p>
<p>It would give a lot of flexibility i'd think if you have something where you could return an object, that has some query set, and still be able to apply JOIN's to it, subqueries and such.</p>
<p>I've search around, and have only found SQL Builder, which seems very basic, and doesn't support joins. Which would be a major feature that would really make it useful.</p>
http://stackoverflow.com/questions/106534/adding-html-to-my-rss-atom-feed-in-rails3adding html to my RSS/Atom feed in RailsShalmanese2008-09-20T00:17:56Z2008-12-30T13:47:21Z
<p>The default rails XML builder escapes all html so something like:</p>
<pre><code>atom_feed do |feed|
@stories.each do |story|
feed.entry story do |entry|
entry.title story.title
entry.content "<b>foo</b>"
end
end
end
</code></pre>
<p>will produce the text:</p>
<pre><code><b>foo</b>
</code></pre>
<p>instead of: <strong>foo</strong></p>
<p>Is there any way to instruct the XML builder to not escape the XML?</p>
http://stackoverflow.com/questions/244772/builder-design-pattern-with-inheritance-is-there-a-better-way5Builder design pattern with inheritance: is there a better way?cfeduke2008-10-28T20:38:28Z2008-10-29T03:30:46Z
<p>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 as a <code>Schedule</code>) with some values determined by invoking the appropriate <code>WithXXX</code> and chaining them together.</p>
<p>I've encountered some commonality amongst my builders and I want to abstract that away into a base class to increase code reuse. Unfortunately what I end up with looks like:</p>
<pre><code>public abstract class BaseBuilder<T,BLDR> where BLDR : BaseBuilder<T,BLDR>
where T : new()
{
public abstract T Build();
protected int Id { get; private set; }
protected abstract BLDR This { get; }
public BLDR WithId(int id)
{
Id = id;
return This;
}
}
</code></pre>
<p>Take special note of the <code>protected abstract BLDR This { get; }</code>.</p>
<p>A sample implementation of a domain class builder is:</p>
<pre><code>public class ScheduleIntervalBuilder :
BaseBuilder<ScheduleInterval,ScheduleIntervalBuilder>
{
private int _scheduleId;
// ...
// UG! here's the problem:
protected override ScheduleIntervalBuilder This
{
get { return this; }
}
public override ScheduleInterval Build()
{
return new ScheduleInterval
{
Id = base.Id,
ScheduleId = _scheduleId
// ...
};
}
public ScheduleIntervalBuilder WithScheduleId(int scheduleId)
{
_scheduleId = scheduleId;
return this;
}
// ...
}
</code></pre>
<p>Because BLDR is not of type BaseBuilder I cannot use <code>return this</code> in the <code>WithId(int)</code> method of <code>BaseBuilder</code>.</p>
<p>Is exposing the child type with the property <code>abstract BLDR This { get; }</code> my only option here, or am I missing some syntax trick?</p>
<p>Update (since I can show why I'm doing this a bit more clearly):</p>
<p>The end result is to have builders that build profiled domain classes that one would expect to retrieve from the database in a [programmer] readable format. There's nothing wrong with...</p>
<pre><code>mock.Expect(m => m.Select(It.IsAny<int>())).Returns(
new Schedule
{
ScheduleId = 1
// ...
}
);
</code></pre>
<p>as that's pretty readable already. The alternative builder syntax is:</p>
<pre><code>mock.Expect(m => m.Select(It.IsAny<int>())).Returns(
new ScheduleBuilder()
.WithId(1)
// ...
.Build()
);
</code></pre>
<p>the advantage I'm looking for out of using builders (and implementing all these <code>WithXXX</code> methods) is to abstract away complex property creation (automatically expand our database lookup values with the correct <code>Lookup.KnownValues</code> without hitting the database obviously) and having the builder provide commonly reusable test profiles for domain classes...</p>
<pre><code>mock.Expect(m => m.Select(It.IsAny<int>())).Returns(
new ScheduleBuilder()
.AsOneDay()
.Build()
);
</code></pre>