User Draemon - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T21:25:37Zhttp://stackoverflow.com/feeds/user/26334http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1298687/how-to-apply-backspace-characters-within-a-text-file-ideally-in-vim2How to "apply" backspace characters within a text file (ideally in vim).Draemon2009-08-19T09:14:45Z2009-11-16T20:07:53Z
<p>I have a log file with backspace characters in it (^H). I'm looking through the file in Vim and it can be quite hard to see what's going on.</p>
<p>Ideally I'd like to be able to "apply" all the ^H on a given line/range so that I can see the final result.</p>
<p>I'd much rather do this within Vim on a line-by-line basis, but a solution which converts the whole file is better than nothing.</p>
http://stackoverflow.com/questions/1735230/can-i-add-custom-attribute-to-html-tag/1735301#17353014Answer by Draemon for Can I add custom attribute to html tag? Draemon2009-11-14T19:23:30Z2009-11-14T19:23:30Z<p>The <code>jquery</code> <code>data()</code> function allows you to associate arbitrary data with dom elements. <a href="http://www.electrictoolbox.com/jquery-store-data-in-dom/" rel="nofollow">Here's an example</a>.</p>
http://stackoverflow.com/questions/1735176/what-is-your-take-on-spdy-googles-experimental-http-replacement/1735258#17352581Answer by Draemon for What is your take on SPDY, Google's experimental HTTP replacement?Draemon2009-11-14T19:12:25Z2009-11-14T19:12:25Z<p>I don't think CSS is a very good example for server-push. If you've ever visited a site you'll have the CSS cached, so forcing it on the client would be wasteful.</p>
http://stackoverflow.com/questions/1675805/persistence-createentitymanagerfactory-in-j2ee-ignores-jta-source0Persistence.createEntityManagerFactory() in J2EE ignores jta sourceDraemon2009-11-04T18:42:04Z2009-11-13T07:11:03Z
<p>I have a perfectly working application client deployed to a glassfish v2 server inside an ear with some EJBs, Entities, etc. I'm using eclipselink.</p>
<p>Currently I have in my persistence.xml:</p>
<pre><code><persistence-unit name="mysource">
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<jta-data-source>jdbc/mysource</jta-data-source>
<class>entities.one</class>
<class>entities.two</class>
...
<properties>
<property name="eclipselink.target-server" value="SunAS9"/>
<property name="eclipselink.logging.level" value="FINE"/>
</properties>
</persistence-unit>
</code></pre>
<p>And this works fine when I inject the <code>EntityManager</code> into the EJB:</p>
<pre><code>@PersistenceContext(unitName="mysource")
private EntityManager em;
</code></pre>
<p>Now I have a requirement to dynamically switch persistence units/databases.
I figure I can get an <code>EntityManager</code> programatically:</p>
<pre><code>em = Persistence.createEntityManagerFactory("mysource").createEntityManager();
</code></pre>
<p>but I get the following error:</p>
<pre><code>Unable to acquire a connection from driver [null], user [null] and URL [null]
</code></pre>
<p>Even "overriding" javax.persistence.jtaDataSource" to "jdbc/mysource" in a <code>Map</code> and calling <code>createEntityManagerFactory("mysource", map)</code> doesn't make a difference.</p>
<p>What am I missing?</p>
http://stackoverflow.com/questions/1716597/java-memory-leak-detection-tools/1716604#17166042Answer by Draemon for Java memory leak detection toolsDraemon2009-11-11T17:00:47Z2009-11-11T17:00:47Z<p><a href="http://www.khelekore.org/jmp/tijmp/" rel="nofollow">tijmp</a></p>
http://stackoverflow.com/questions/1714697/how-do-i-annotate-a-jaxb-property-to-use-xsdtime-rather-than-xsddatetime3How do I annotate a JAXB property to use xsd:time rather than xsd:datetime?Draemon2009-11-11T11:47:57Z2009-11-11T15:26:21Z
<p>I have a JAXB class like this:</p>
<pre><code>public class Game {
private Date startTime;
@XmlElement
public Date getStartTime() {
return startTime;
}
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
}
</code></pre>
<p>which results in an <code>.xsd</code> where startTime has type <code>xsd:datetime</code>. I want it to be <code>xsd:time</code>. <code>xsd:time</code> maps to <code>XmlGregorianCalendar</code>, but the reverse mapping maps to <code>xsd:anySimpleType</code> which isn't very helpful.</p>
<p>I've tried various arguments to <code>@XmlElement(type=...)</code> to no avail. Any pointers would be greatly appreciated.</p>
<p>If it makes a difference, this is a type used by JAX-WS.</p>
http://stackoverflow.com/questions/1688046/mod-rewrite-optional-parameters/1688110#16881100Answer by Draemon for Mod Rewrite Optional ParametersDraemon2009-11-06T14:55:44Z2009-11-06T14:55:44Z<p>You <em>could</em> use <a href="http://httpd.apache.org/docs/2.2/mod/mod%5Frewrite.html#rewritemap" rel="nofollow">rewritemap</a> with a small external script which maps non-empty to <code>?page=$1</code> and empty to empty. I would suggest sticking with what you've got.</p>
http://stackoverflow.com/questions/1688034/doubt-regarding-de-referencing-structure-pointers-please-explain/1688052#16880520Answer by Draemon for Doubt regarding de-referencing structure pointers. Please explain Draemon2009-11-06T14:46:21Z2009-11-06T14:46:21Z<p>I think you meant:</p>
<pre><code>struct x {
int xx;
char *y;
int * num;
struct x *next;
}x;
</code></pre>
<p>You reference a "struct tag" that you haven't defined wherever you use <code>struct x</code>. You have no way to refer to the type of variable <code>x</code>. Since you want to refer to it with <code>struct x</code> you must define the struct tag.</p>
http://stackoverflow.com/questions/1682479/either-wsdl-or-wsimport-and-wsdl-mono-are-horribly-broken0Either WSDL or wsimport and wsdl (mono) are horribly brokenDraemon2009-11-05T18:11:38Z2009-11-06T10:59:44Z
<p><strong>EDIT</strong> I started off with the example given below, but I have now:</p>
<ul>
<li>Tried the example from the W3C spec. After fixing another error (binding was called <code>StockQuoteSoapBinding</code> in one place, <code>StockQuoteBinding</code> in another), it gives the same issue.</li>
<li>Tried the mono generator <code>wsdl</code> to see if <code>wsimport</code> was to blame. It gives an equivalent error.</li>
</ul>
<p>So it seems to me that despite all the hype about SOAP, it doesn't actually work - at least not as advertised. I can't believe nobody has run the most findable examples of wsdl through these generators.</p>
<p><strong>Original Question</strong></p>
<p>wsimport is failing on the following wsdl:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="OrdersService"
xmlns:xsd="http://www.w3.org/1999/XMLSchema"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:os="http://example/schema/OrdersService"
xmlns:tns="http://example/ns/OrdersService"
targetNamespace="http://example/ns/OrdersService"
>
<wsdl:types>
<xsd:schema
targetNamespace="http://example/schema/OrdersService">
<xsd:element name="o:GetOrders">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="criteria" type="string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="os:GetOrdersResponse">
<xsd:complexType>
<xsd:all>
<xsd:element name="orders" type="string"/>
</xsd:all>
</xsd:complexType>
</xsd:element>
</xsd:schema>
</wsdl:types>
<wsdl:message name="GetOrdersRequest">
<wsdl:part name="parameters" element="os:GetOrders"/>
</wsdl:message>
<wsdl:message name="GetOrdersResponse">
<wsdl:part name="parameters" element="os:GetOrdersResponse"/>
</wsdl:message>
<wsdl:portType name="GetOrdersPortType">
<wsdl:operation name="GetOrders">
<wsdl:input message="tns:GetOrdersRequest"/>
<wsdl:output message="tns:GetOrdersResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="GetOrdersBinding" type="tns:GetOrdersPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="GetOrders">
<soap:operation soapAction=""/>
<wsdl:input><soap:body use="literal"/></wsdl:input>
<wsdl:output><soap:body use="literal"/></wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="OrdersService">
<wsdl:port name="GetOrdersPort" binding="tns:GetOrdersBinding">
<soap:address location="http://localhost:8080/svc/OrdersService/GetOrders"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
</code></pre>
<p>With:</p>
<pre><code>parsing WSDL...
[ERROR] Schema descriptor {http://example/schema/OrdersService}GetOrders in message part "parameters" is not defined and could not be bound to Java. Perhaps the schema descriptor {http://example/schema/OrdersService}GetOrders is not defined in the schema imported/included in the WSDL. You can either add such imports/includes or run wsimport and provide the schema location using -b switch.
line 35 of file:test.wsdl
</code></pre>
http://stackoverflow.com/questions/1624312/design-for-using-a-mock-connection/1624413#16244131Answer by Draemon for Design for using a mock connectionDraemon2009-10-26T12:03:17Z2009-10-26T12:03:17Z<p>Don't over-complicate things. There's an obvious need to return different implementations - so use a factory. Then the factory needs to know which implementation to create. You could use a property, or even get away with a static boolean variable.</p>
http://stackoverflow.com/questions/1589149/where-can-i-find-ejb-wrapper-and-remotedynamicstub-classes0Where can I find ejb _*_Wrapper and __*_Remote_DynamicStub classes?Draemon2009-10-19T14:54:07Z2009-10-19T14:54:07Z
<p>I've got a fairly boring stateful session bean called <code>MyEJB</code>, and I'm using Glassfish 2.1 and javaws. Everything works fine, except method calls which return a lot of data are taking an inordinately long time. Wireshark tells me the network communication is over pretty quickly, so the problem is on the client side...in the stub. Using a number of profilers I can see that the following classes are eating up all the time:</p>
<p><code>_MyEJB_Wrapper</code>
<code>__MyEJB_Remote_DynamicStub</code></p>
<p>But I can't find them anywhere. I was going to decompile them with <code>jad</code> to look for clues. I've dumped the classpath and searched through it, I've looked through <code>~/.java/deployment/cache</code> and I've come to a dead end.</p>
<ul>
<li>Is there anywhere I can see the generated sub code?</li>
<li>How are these classes being found if they're not in the classpath?</li>
<li>Does anyone know why the stub might be taking so long to return?</li>
</ul>
http://stackoverflow.com/questions/1561200/how-to-use-lazy-property-loading-with-glassfish-toplink-essentials0How to use lazy property loading with glassfish + toplink essentialsDraemon2009-10-13T16:01:29Z2009-10-19T11:40:50Z
<p>I have a query:</p>
<pre><code>select p from Product p
</code></pre>
<p>Which gives me the results I expect, but one of the columns (let's call it <code>massiveDescription</code>) is big, and since I'm querying the full list of products I want to exclude it.</p>
<p>I added <code>@Basic(fetch=FetchType.LAZY)</code> to <code>getMassiveDescription()</code> but this made no difference (the generated sql still includes all columns).</p>
<p>I'm using glassfish pretty much out of the box, and it uses toplink essentials. I thought there might be something I had to do to configure the agent, so I tried adding <code>-javaagent:/path/to/toplink-essentials-agent.jar</code> in the JVM options through the glassfish web interface. Then I get an exception:</p>
<pre><code>java.lang.NoClassDefFoundError: javax/transaction/Synchronization
at ...
</code></pre>
<p>So I figure I need to add <code>jta.jar</code> to the classpath suffix box in the glassfish web ui. That gives me a different exception:</p>
<pre><code>java.lang.NoClassDefFoundError: oracle/toplink/essentials/transaction/JTASynchronizationListener
at oracle.toplink.essentials.transaction.JTATransactionController.<init>...
</code></pre>
<p>So now I'm chasing jars. I add <code>toplink-essentials.jar</code> to the classpath in the same way, but I still get the same exception.</p>
<p>I have a few questions:</p>
<ul>
<li>Is glassfish supposed to support bytecode enhancement for lazy property loading out of the box?</li>
<li>If not, am I missing the correct way to configure it?</li>
<li>I read that the "recommended" way to achieve this is using a project to select only part of the entity in the query. I like that better, but can't find any documentation on how to do it. Swapping <code>select p</code> for <code>select p.id, p.name, ...</code> gives me strange errors - but I was only guessing at the syntax anyway.</li>
</ul>
http://stackoverflow.com/questions/1561200/how-to-use-lazy-property-loading-with-glassfish-toplink-essentials/1588209#15882090Answer by Draemon for How to use lazy property loading with glassfish + toplink essentialsDraemon2009-10-19T11:40:50Z2009-10-19T11:40:50Z<p>Turns out toplink essentials doesn't support this. Eclipselink does, so looks like I'm moving ORMs.</p>
http://stackoverflow.com/questions/1561490/mysql-skips-first-record-found/1561562#15615623Answer by Draemon for MySql skips first record foundDraemon2009-10-13T16:59:37Z2009-10-13T16:59:37Z<p>The short answer is there's nothing wrong with your query, so</p>
<pre><code>user_id!='MyUserName'
</code></pre>
<p>or</p>
<pre><code>follow_back != 0
</code></pre>
<p>or</p>
<pre><code>until_date != '2009-10-13'
</code></pre>
<p>Try just querying on one criterion at a time and see if you can norrow it down. Perhaps <code>follow_back</code> is NULL?</p>
http://stackoverflow.com/questions/1554642/why-does-join-fetch-not-work-with-a-one-to-many-relationship1Why does join fetch not work with a one-to-many relationship?Draemon2009-10-12T13:38:27Z2009-10-12T17:02:11Z
<p>I have three entity classes A, B, C. A has a many-to-many relationship with B, and a one-to-many relationship with C.</p>
<p><code>select a from A join fetch a.b</code></p>
<p>Produces one query as expected</p>
<p><code>select a from A join fetch a.c</code></p>
<p>Produces n+1 queries.</p>
<p>What am I missing?</p>
http://stackoverflow.com/questions/1554548/how-to-query-three-related-tables-efficiently-jpa-ql1How to query three related tables efficiently (JPA-QL)Draemon2009-10-12T13:22:15Z2009-10-12T14:33:22Z
<p>Let's say I have entities A, B, C and each A has many B and C entities. I want to query a load of A entities based on some criterea, and I know I will be accessing all B and C entities for each A I return.</p>
<p>Something like <code>select a from A as a join fetch a.b join fetch a.c</code> would seem to make sense at first, but this creates a huge product if the numbers of B and C entities are large. Extending this to another associated entities makes the query totally unreasonable.</p>
<p>If I leave JPA to its own devices, I end up with n+1 selects when it wants to access the B and C entities.</p>
<p>What I thought I'd do was query A join fetch B, then A join fetch C, but this doesn't work as it gives me two <code>List<A></code> results each with only half the information.</p>
<p>This is a pretty simple query in SQL terms, and I'm disappointed there isn't an obvious way to handle this. Am I missing something?</p>
<p>Provider is toplink essentials</p>
http://stackoverflow.com/questions/1499115/authenticating-a-java-web-start-client-app/1499179#14991791Answer by Draemon for Authenticating a Java Web Start Client App Draemon2009-09-30T16:14:58Z2009-09-30T16:14:58Z<p>Remember that if the client is communicating with the server over https, the user can easily replace the JWS client with something else that also communicates over https. Anything the JWS client could sent to "prove" its identity could be faked pretty easily. You could use client certificates (or numerous other types of authentication) to make sure only users with access to the JWS client could connect, but they will always be able to extract what they need from the JWS client to connect with something else.</p>
<p>The <em>service</em> needs to be secured based on what the <em>user</em> should be allowed to do.</p>
http://stackoverflow.com/questions/1497712/how-to-best-handle-listentity-listentity-id-listentity-name-efficiently1How to best handle List<Entity>, List<Entity Id>, List<Entity name> efficiently?Draemon2009-09-30T12:07:40Z2009-09-30T15:40:50Z
<p>I have a java application which uses JPA.</p>
<p>Say I have an entity called <code>Product</code> with <code>name</code> and <code>price</code> attributes (<em>all</em> entities have an <code>id</code> attribute).</p>
<p>Naturally I can get a <code>List<Product></code> fairly easily (from a query or another entity), but often I want a <code>List<String></code> (list of product names) or <code>List<Long></code> (list of product prices or list of product ids).</p>
<p>A lot of the time it's just as easy to pass the whole <code>Product</code> around, but there are two cases where I don't want to do this:</p>
<ul>
<li>I'm passing the list to a class which shouldn't have a dependency on the <code>Product</code> class.</li>
<li>It's significantly easier/faster to get a list of ids than full product objects, (but in some cases I already have them).</li>
</ul>
<p>The naive way to do this would go something like:</p>
<pre><code>List<Long> productIds = new ArrayList<Long>();
for(Product product: products) {
productIds.add(product.getId());
}
</code></pre>
<p>But I don't like this because it's messy and inefficient. In python I would do something like:</p>
<pre><code>[ p.id for p in products ]
</code></pre>
<p>The "best" I can come up with in Java is:</p>
<pre><code>public class ProductIdList extends AbstractList<Long> {
private List<Product> data;
public ProductIdList(List<Product> data) {
this.data = data;
}
public Long get(int i) {
return data.get(i).getId();
}
public int size() {
return data.size();
}
public Long remove(int i) {
return data.remove(i).getId();
}
/* For better performance */
public void clear() {
data.clear();
}
/* Other operations unsupported */
}
</code></pre>
<p>Pros:</p>
<ul>
<li>This approach doesn't need to copy the data</li>
<li>It is a true "view" on the data - changes to the underlying list are reflected.</li>
</ul>
<p>Cons:</p>
<ul>
<li>Seems like a lot of code</li>
<li>Need a class like this for each <em>attribute</em> I want to access like this</li>
</ul>
<p>So is this a good idea or not? Should I just be creating secondary lists most of the time? Is there a third option I haven't considered?</p>
http://stackoverflow.com/questions/1136559/architectural-mvc-and-swing0Architectural MVC and SwingDraemon2009-07-16T09:53:37Z2009-09-20T14:00:03Z
<p>I want to use MVC to structure my Swing application, but there seems to be a conflict.</p>
<p>As I understand MVC, the controller should handle input and update the model. The model should notify its observers of which the view is one.</p>
<p>I have two problems</p>
<ul>
<li>Swing is <em>all</em> part of the view. The fact that components have their own models is an implementation detail. I want to keep the swing-specific code out of the controller/model don't I?</li>
<li>My controller needs to receive user-triggered events, but these come from the swing component which is in the view, and the controller shouldn't know about the view.</li>
</ul>
<p>I'm sure this problem has been solved many times before, but I can't find a real world example of an MVC based swing app of a decent size.</p>
<p><strong>Update - A problem I forgot</strong></p>
<p>What MVC doesn't directly cater for is the structure of the various MVC components within the hierarchy of the application. For example, the main display may have "sales" and "purchasing" tabs, each of which might have "new" and "query" panels. On top of that, there may be an "amend selected" button which would create (possibly multiple) windows on request.</p>
<p>Something has to create a model,view and controller for these sub-components on request. It can't be the controller since the controller or model since they don't know which view to create and it shouldn't be the view since it's application logic and it's responding to an event (which is the controller's job).</p>
<p>Is there an answer?</p>
http://stackoverflow.com/questions/983964/why-does-jpasswordfield-getpassword-create-a-string-with-the-password-in-it/1445575#14455750Answer by Draemon for Why does JPasswordField.getPassword() create a String with the password in it?Draemon2009-09-18T16:20:43Z2009-09-18T16:20:43Z<blockquote>
<p>**I came across this while I was looking for a way to actually display some sensitive data on a Swing component without using a String object. Apparently there is no way to do it unless I am willing to rewrite part (all?) of the Swing API.. not gonna happen.</p>
</blockquote>
<p>You can tell a <code>JPasswordField</code> to display the characters by calling <code>field.setEchoChar('\0')</code>. This retains the rest of the protection offered by <code>JPasswordField</code> (no <code>String</code>s, no cut/copy).</p>
http://stackoverflow.com/questions/1438158/local-variable-assignment-to-avoid-multiple-casts/1438192#14381921Answer by Draemon for Local variable assignment to avoid multiple castsDraemon2009-09-17T11:12:33Z2009-09-17T11:12:33Z<p>Absolutely a good idea as it improves clarity. I would say that applies for avoiding multiple accessor calls too - it's a good idea for clarity not performance reasons.</p>
http://stackoverflow.com/questions/1160539/glassfish-custom-authentication-module/1160568#11605680Answer by Draemon for Glassfish Custom Authentication Module?Draemon2009-07-21T17:25:05Z2009-09-08T18:31:55Z<p>See the <a href="https://glassfish.dev.java.net/javaee5/security/faq.html" rel="nofollow">Glassfish security FAQ</a>, specifically "How do I write/configure my own login module and plug it into GlassFish?"</p>
<p>and <a href="http://developers.sun.com/appserver/reference/techart/as8%5Fauthentication/" rel="nofollow">this sun document</a></p>
http://stackoverflow.com/questions/1159080/how-to-use-login-callback-for-application-client0How to use login callback for application client.Draemon2009-07-21T13:10:08Z2009-09-06T06:00:02Z
<p>I'm writing a Swing application client (it's runs over webstart, and I'm using glassfish). In the application class I have:</p>
<pre><code>@EJB private static MyBean myBean;
</code></pre>
<p>and in <code>MyBean</code> I have:</p>
<pre><code>@Remote
public interface MyBean {
public int getRand();
}
@DeclareRoles(("admin"))
@Stateful(name="MyBean")
public class MyBeanImpl implements MyBean {
@RolesAllowed(("admin"))
public int getRand() {
return 9; // Guaranteed to be random
}
}
</code></pre>
<p>So far so good. I start the app using <code>javaws <a href="http://server/app/app-client" rel="nofollow">http://server/app/app-client</a></code>, it asks for user/pass and authenticates properly (using the fileRealm from glassfish).</p>
<p>I have two problems:</p>
<ul>
<li>It seems to try to authenticate right away (when the bean is referenced) rather than when I try to call the method. I can live with this.</li>
<li>I want to use my own login dialog. Partly for aesthetic reasons, but also for graceful error handling, retries, etc</li>
</ul>
<p>So I need to specify a callback. Using <code>new LoginContext("fileRealm", myCallback)</code> I get an error about no login modules for fileRealm. I've tried various mixtures of examples from the net, but very few are designed to application clients.</p>
http://stackoverflow.com/questions/170103/what-rare-programming-tools-do-you-use/423991#4239912Answer by Draemon for What rare programming tools do you use?Draemon2009-01-08T11:47:06Z2009-09-05T13:55:42Z<p>XSLT. Most people don't realise it's <a href="http://en.wikipedia.org/wiki/Turing%5Fcompleteness" rel="nofollow">Turing complete</a>. You can do some clever things transforming <a href="http://en.wikipedia.org/wiki/Apache%5FAnt" rel="nofollow">Ant</a> build files and generating XML configuration files, and that sort of thing. Nicest thing I did was generating <a href="http://en.wikipedia.org/wiki/GraphML" rel="nofollow">GraphML</a> from an XML version control log.</p>
http://stackoverflow.com/questions/1195346/unsolved-problems-in-software-engineering/1195421#11954211Answer by Draemon for Unsolved problems in Software EngineeringDraemon2009-07-28T17:02:15Z2009-08-25T09:22:26Z<p>This might be controversial, but I see <strong>patterns</strong> as an unsolved problem.</p>
<p>They exist for a great purpose - to distill well-trodden idioms into best
practices, to avoid reinventing the wheel, to turn the intangible into
tangible techniques we can communicate easily.</p>
<p>BUT</p>
<ul>
<li><p>There are so many developers who hide behind patterns.
Just because you are using a pattern doesn't mean you're
using the right one, and there can't be a pattern for
absolutely everything.</p></li>
<li><p>Architectural patterns like MVC are far too fuzzy to be
lumped in with design patterns (like Builder). Everyone
seems to understand these higher level patterns slightly
differently. Even if there <em>is</em> a definition somewhere,
unless this is commonly understood, they lose much of
their communicative value.</p></li>
<li><p>Patterns are not <a href="http://en.wikipedia.org/wiki/Lego" rel="nofollow">Lego</a>. They are not an excuse for not
understanding "<a href="http://en.wikipedia.org/wiki/First%5Fprinciple" rel="nofollow">first principles</a>". I would argue that you
shouldn't use a pattern until you've "derived" it
yourself. That's the only way you'll understand <em>why</em> it
should be a pattern, and make the right choice about when
to use it.</p></li>
</ul>
http://stackoverflow.com/questions/1159400/span-grow-bug-in-miglayout1Span/Grow bug in MigLayout?Draemon2009-07-21T14:03:16Z2009-08-21T06:12:32Z
<p>The following is close to what I want, and does what I expect:</p>
<pre><code>import javax.swing.JComboBox;
import javax.swing.JPanel;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
import net.miginfocom.swing.MigLayout;
public class MigBug extends JFrame {
public static void main(String args[]) {
MigBug migbug = new MigBug();
migbug.pack();
migbug.setVisible(true);
}
public MigBug() {
JPanel content = new JPanel();
content.setLayout(new MigLayout("fill, debug"));
content.add(new JLabel("Label 1"));
content.add(new JComboBox());
content.add(new JLabel("Label 2"));
content.add(new JTextField(25), "growx, wrap");
content.add(new JLabel("BIG"), "span, w :400:, h :200:, growy");
setContentPane(content);
}
}
</code></pre>
<p>However, if I make the following change:</p>
<pre><code>content.add(new JLabel("BIG"), "span, w :400:, h :200:, grow");
</code></pre>
<p>ie. Change the spanned component to grow in x as well as y, the Label 1 cell grows in x, even though it shouldn't.</p>
<p>Does anyone know a way I can get round this?</p>
http://stackoverflow.com/questions/1285418/versioning-of-programs-as-dependent-on-library/1285433#12854331Answer by Draemon for Versioning of programs as dependent on libraryDraemon2009-08-16T21:53:15Z2009-08-16T21:53:15Z<p>Remember that changing the major number of the dependency is a major change for the end users. It's definitely not patch level, and I'd say stick with major unless you have a very good reason not to.</p>
http://stackoverflow.com/questions/1281607/how-to-modify-without-any-loop-a-collections-values-to-get-a-new-collection/1281642#12816422Answer by Draemon for How to modify, without any loop, a collections values to get a new collection?Draemon2009-08-15T10:56:49Z2009-08-15T10:56:49Z<p>It's sounds to me like you're trying to use functional idioms with Java. While this can be achieved using third party libs and functor (as others have suggested), I would recommend programming Java using Java idioms or use a functional language. If you want a JVM-compatible functional language, look at <a href="http://www.scala-lang.org/" rel="nofollow">Scala</a>.</p>
http://stackoverflow.com/questions/1277157/java-regex-replace-with-capturing-group/1277348#12773482Answer by Draemon for Java Regex Replace with Capturing GroupDraemon2009-08-14T11:21:25Z2009-08-14T11:21:25Z<p>earl's answer gives you the solution, but I thought I'd add what the problem is that's causing your <code>IllegalStateException</code>. You're calling <code>group(1)</code> without having first called a matching operation (such as <code>find()</code>). This isn't needed if you're just using <code>$1</code> since the <code>replaceAll()</code> is the matching operation.</p>
http://stackoverflow.com/questions/1255223/what-are-the-important-notions-in-c-that-you-did-not-learn-from-your-teachers/1255302#12553029Answer by Draemon for What are the important notions in C that you did not learn from your teachers Draemon2009-08-10T14:40:40Z2009-08-10T14:40:40Z<p>Use <a href="http://valgrind.org" rel="nofollow">valgrind</a></p>
http://stackoverflow.com/questions/1806181/why-should-i-convert-a-string-to-upper-case-when-comparing/1806234#1806234Comment by Draemon on Why should I convert a string to upper case when comparing?Draemon2009-11-27T00:17:53Z2009-11-27T00:17:53ZYou should probably clarify "in some non-english languages"http://stackoverflow.com/questions/1735176/what-is-your-take-on-spdy-googles-experimental-http-replacement/1735258#1735258Comment by Draemon on What is your take on SPDY, Google's experimental HTTP replacement?Draemon2009-11-14T19:20:25Z2009-11-14T19:20:25ZBut the server has no way to know if the content is cached. "Initial request" only makes sense for a single session.http://stackoverflow.com/questions/1735230/can-i-add-custom-attribute-to-html-tag/1735239#1735239Comment by Draemon on Can I add custom attribute to html tag? Draemon2009-11-14T19:13:59Z2009-11-14T19:13:59ZWell technically it's not html any more. Equally you could add a load of binary in the middle of a tag - but it won't be html.http://stackoverflow.com/questions/1735176/what-is-your-take-on-spdy-googles-experimental-http-replacementComment by Draemon on What is your take on SPDY, Google's experimental HTTP replacement?Draemon2009-11-14T19:09:34Z2009-11-14T19:09:34Z50% faster is not twice as fast.http://stackoverflow.com/questions/1675805/persistence-createentitymanagerfactory-in-j2ee-ignores-jta-source/1727637#1727637Comment by Draemon on Persistence.createEntityManagerFactory() in J2EE ignores jta sourceDraemon2009-11-13T16:43:53Z2009-11-13T16:43:53ZWhat I'm <i>trying</i> to do is exactly what the annotation does, but in code so I can set the unitName programatically. I basically just want to ask the container for an entity manager for a given PU by name. If there's another way to do this (ie without createEntityManagerFactory), that's fine.http://stackoverflow.com/questions/1714697/how-do-i-annotate-a-jaxb-property-to-use-xsdtime-rather-than-xsddatetime/1714816#1714816Comment by Draemon on How do I annotate a JAXB property to use xsd:time rather than xsd:datetime?Draemon2009-11-11T16:59:00Z2009-11-11T16:59:00ZThanks for all your help.
This would be better for the first line of setStartTime(): Calendar gc = GregorianCalendar.getInstance();http://stackoverflow.com/questions/1714697/how-do-i-annotate-a-jaxb-property-to-use-xsdtime-rather-than-xsddatetime/1714816#1714816Comment by Draemon on How do I annotate a JAXB property to use xsd:time rather than xsd:datetime?Draemon2009-11-11T12:46:23Z2009-11-11T12:46:23ZLooking good. I'd completely missed XmlSchemaType (perhaps since it's not mentioned in the jax-ws docs on annotations: <a href="https://jax-ws.dev.java.net/jax-ws-ea3/docs/annotations.html" rel="nofollow">jax-ws.dev.java.net/jax-ws-ea3/docs/…</a>
My only problem now is to convert a <code>Date</code> to an <code>XMLGregorianCalendar</code> - not so easy considering how pathologically insane Java's Date handling is.http://stackoverflow.com/questions/1714697/how-do-i-annotate-a-jaxb-property-to-use-xsdtime-rather-than-xsddatetimeComment by Draemon on How do I annotate a JAXB property to use xsd:time rather than xsd:datetime?Draemon2009-11-11T12:44:48Z2009-11-11T12:44:48Z@skaffman: xsd from javahttp://stackoverflow.com/questions/1714697/how-do-i-annotate-a-jaxb-property-to-use-xsdtime-rather-than-xsddatetime/1714745#1714745Comment by Draemon on How do I annotate a JAXB property to use xsd:time rather than xsd:datetime?Draemon2009-11-11T12:00:29Z2009-11-11T12:00:29ZThis seems to be "going the other way". Obviously I don't want to bind <i>all</i> java.util.Date to xsd:time, just the ones which represent time.http://stackoverflow.com/questions/1688470/for-what-reason-does-an-ide-not-check-to-see-if-it-can-create-a-binary-before-comComment by Draemon on For what reason does an IDE not check to see if it can create a binary before compiling?Draemon2009-11-06T16:11:55Z2009-11-06T16:11:55Z@Peter: First off, it's not at all clear from your question that "creatable" means "has write permissions". Second, it's not the compiler's fault that you've locked the file.http://stackoverflow.com/questions/1688493/calling-shell-script-from-java-application/1688511#1688511Comment by Draemon on calling shell script from java applicationDraemon2009-11-06T16:01:37Z2009-11-06T16:01:37ZThis isn't true. You're assuming that the current working directory is the same as the package root.http://stackoverflow.com/questions/1687956/term-for-rotating-headerComment by Draemon on Term for rotating headerDraemon2009-11-06T15:00:04Z2009-11-06T15:00:04ZI think the official term is "annoying"http://stackoverflow.com/questions/1688034/doubt-regarding-de-referencing-structure-pointers-please-explain/1688051#1688051Comment by Draemon on Doubt regarding de-referencing structure pointers. Please explain Draemon2009-11-06T14:51:23Z2009-11-06T14:51:23ZThat does not define a named type 'x' - it's just a struct tag. To define a named type you would need a typedef.http://stackoverflow.com/questions/1682479/either-wsdl-or-wsimport-and-wsdl-mono-are-horribly-broken/1684036#1684036Comment by Draemon on Either WSDL or wsimport and wsdl (mono) are horribly brokenDraemon2009-11-06T10:35:21Z2009-11-06T10:35:21ZI now get 'missing required attribute "location" of element "wsdl:import"'. Of course the document doesn't really have a location since it's embedded.http://stackoverflow.com/questions/1682479/either-wsdl-or-wsimport-and-wsdl-mono-are-horribly-broken/1684036#1684036Comment by Draemon on Either WSDL or wsimport and wsdl (mono) are horribly brokenDraemon2009-11-06T00:06:09Z2009-11-06T00:06:09ZEven though the schema is internal to the document (ie defined in the type section)? Thanks for the suggestion. I'll try it tomorrow.