User Garth Gilmour - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T05:39:16Z http://stackoverflow.com/feeds/user/9119 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/141611/iterating-over-enum-constants-in-jsp/141658#141658 3 Answer by Garth Gilmour for iterating over Enum constants in JSP Garth Gilmour 2008-09-26T20:10:03Z 2009-10-05T13:40:19Z <p>If you are using Tag Libraries you could encapsulate the code within an EL function. So the opening tag would become:</p> <pre><code>&lt;c:forEach var="type" items="${myprefix:getValues()}"&gt; </code></pre> <p>EDIT: In response to discussion about an implementation that would work for multiple Enum types just sketched out this:</p> <pre><code>public static &lt;T extends Enum&lt;T&gt;&gt; Enum&lt;T&gt;[] getValues(Class&lt;T&gt; klass) { try { Method m = klass.getMethod("values", null); Object obj = m.invoke(null, null); return (Enum&lt;T&gt;[])obj; } catch(Exception ex) { //shouldn't happen... return null; } } </code></pre> http://stackoverflow.com/questions/111390/should-domain-objects-and-simple-javabeans-be-unit-tested/111649#111649 12 Answer by Garth Gilmour for Should domain objects and simple JavaBeans be unit tested? Garth Gilmour 2008-09-21T18:33:34Z 2009-09-04T12:01:49Z <p>You should not write tests which:</p> <ul> <li>Test the language or the IDE (i.e. automatically generated getters and setters)</li> <li>Add no value to your test harness and kill your enthusiasm for Unit Testing</li> </ul> <p>The same applies for .NET objects which only have properties (sometimes called 'Info' objects). </p> <p>In an ideal world you would have 100% test coverage, but in practice this is not going to happen. So spend the client's money where it will add the most benefit i.e. writing tests for classes with complex state and behaviour.</p> <p>If your JavaBean becomes more interesting you can of course add a test case later. One of the common problems associated with Unit Testing / TDD is the mistaken belief that everything has to be perfect first time.</p> http://stackoverflow.com/questions/149553/best-format-for-a-software-engineers-resume/149602#149602 21 Answer by Garth Gilmour for Best Format for a Software Engineer's Resume Garth Gilmour 2008-09-29T16:54:07Z 2009-03-30T22:59:33Z <p>The classic advice is:</p> <ul> <li>Put your name at the top in large font (for ease of sorting). Dont put 'Resume' or 'Curriculum Vitae' - its amazing how many people still do this.</li> <li>Follow with a comma separated list of your key skills on one line. Not everything you have ever used but the 4-8 things you are happy being quizzed on in detail</li> <li>Next comes your employment history in reverse order (no one cares where you started 'n' years ago), then your industry certifications and finally your education (reversed again)</li> <li>Be <strong>very</strong> careful if you have a PhD and an impressive publications list. Unless you age going for a very specialized position this can do you more harm than good. Be modest (e.g. 'publications available on request')</li> <li>Assume that the whole thing is going to be faxed, scanned, photocopied and folded several times before it gets to the person who can give you the job. So no fancy fonts or use of colour and <strong>never</strong> any images.</li> <li>Contact information should go in a footer at the bottom of each page. You want it to be readily available but not to waste useful space.</li> </ul> <p>I keep mine <a href="http://www.ggilmour.com/resume/GarthGilmourResume.pdf" rel="nofollow">here</a> - note that its an abbreviated version for clients who want a summary.</p> http://stackoverflow.com/questions/150445/can-a-sequence-diagram-realistically-capture-your-logic-in-the-same-depth-as-code 2 Can a Sequence Diagram realistically capture your logic in the same depth as code? Garth Gilmour 2008-09-29T20:14:54Z 2008-10-22T22:42:37Z <p>I use UML Sequence Diagrams all the time, and am familiar with the UML2 notation.</p> <p>But I only ever use them to capture the essence of what I intend to do. In other words the diagram always exists at a level of abstraction above the actual code. Every time I use them to try and describe <strong>exactly</strong> what I intend to do I end up using so much horizontal space and so many alt/loop frames that its not worth the effort.</p> <p>So it may be possible in theory but has anyone every really used the diagram in this level of detail? If so can you provide an example please? </p> http://stackoverflow.com/questions/196087/what-is-a-component/196120#196120 2 Answer by Garth Gilmour for What is a component Garth Gilmour 2008-10-12T21:23:41Z 2008-10-12T21:29:26Z <p>The term component is one of the most ambiguous and overused ones in OO.</p> <p>Most people would agree that a component is made up of a group of classes, which collaborate together to implement one or more interfaces. One of the classes takes on the role of the 'front-end' i.e. it implements the interface but delegates the work to the other classes within the group. As you say components should be replaceable without the rest of the system knowing.</p> <p>A great example of a component based architecture was COM. Its a great example because it was so heavily used and rigidly specified. But note that the need for this architecture was based on the inflexibility of the C++ compilation and deployment model.</p> <p>in Java you can do an awful lot to a class without breaking binary compatability with the rest of the system. So there is not as much need to build rigid, component based architectures. But it all depends on how you define the term, e.g any project built using dependency injection could count as 'component based'.</p> http://stackoverflow.com/questions/180413/mocks-or-real-classes/180542#180542 0 Answer by Garth Gilmour for Mocks or real classes? Garth Gilmour 2008-10-07T21:35:58Z 2008-10-07T21:35:58Z <p>If your 'real things' are simply value objects like JavaBeans then thats fine.</p> <p>For anything more complex I would worry as mocks generated from mocking frameworks can be given precise expectations about how they will be used e.g. the number of methods called, the precise sequence and the parameters expected each time. Your real objects cannot do this for you so you risk losing depth in your tests.</p> http://stackoverflow.com/questions/174024/object-arrays-in-method-signatures/174032#174032 1 Answer by Garth Gilmour for Object arrays in method signatures Garth Gilmour 2008-10-06T12:10:56Z 2008-10-06T12:10:56Z <p>The latter was introduced in Java 5 and existing libraries are gradually being reworked to support it. You might still use the former to stress that the method requires 2+ inputs, plus there are restrictions on where the ... can be used.</p> http://stackoverflow.com/questions/173949/im-a-professional-java-developer-should-i-learn-net/173962#173962 1 Answer by Garth Gilmour for I'm a professional Java developer, should I learn .NET? Garth Gilmour 2008-10-06T11:37:33Z 2008-10-06T11:37:33Z <p>I work in both Java and .NET and have found that learning one helps with the other. Not least because there is a lot of cross-pollination (polite term), so what's new and interesting on one platform inevitably makes its way to the other. This gives you a competitive advantage over single-platform developers.</p> <p>So learning Struts meant ASP .NET MVC wasnt a big shock. Whilst knowing ASP .NET web controls helped me make sense of Java ServerFaces.</p> <p>IMHO the high level libraries in .NET (ASP,ADO, Web Services ...) are much better than in Java. But the Java low level libraries (I/O, Networking, Cryptography ...) are much better and pattern rich. </p> http://stackoverflow.com/questions/171971/can-i-get-away-with-not-being-a-designer/172006#172006 2 Answer by Garth Gilmour for Can I get away with not being a designer Garth Gilmour 2008-10-05T13:46:01Z 2008-10-05T13:46:01Z <p>The good news is that the <em>design</em> part of web design is almost always given to someone who has talents in that area, preferably someone from a graphic design background. Experience has shown that developers make terrible designers, so its always handled by someone else (I believe StackOverflow was a case in point).</p> <p>The bad news is that with 'rich clients' being all the rage and AJAX etc. the flavour of the moment you cant work in the web development area without acquiring in depth knowledge of the DOM, CSS, JavaScript, HTTP protocol and so on... The main thing I would look for in a <em>pure</em> web developer would be in depth knowledge of these things...</p> http://stackoverflow.com/questions/171952/is-there-a-destructor-for-java/171957#171957 23 Answer by Garth Gilmour for Is there a destructor for Java? Garth Gilmour 2008-10-05T13:17:15Z 2008-10-05T13:17:15Z <p>Because Java is a garbage collected language you cannot predict when (or even if) an object will be destroyed. Hence there is no direct equivalent of a destructor.</p> <p>There is an inherited method called finalize, but this is called entirely at the discretion of the garbage collector. So for classes that need explicit tidy up the convention is to define a <em>close</em> method and use finalize only for sanity checking (i.e. if <em>close</em> has not been called do it now and log an error).</p> <p>There was <a href="http://stackoverflow.com/questions/158174/why-would-you-ever-implement-finalize">a question that spawned in-depth discussion of finalize</a> recently, so that should provide more depth if required...</p> http://stackoverflow.com/questions/171776/where-is-the-benefit-in-using-the-strategy-pattern/171782#171782 6 Answer by Garth Gilmour for Where is the benefit in using the Strategy Pattern? Garth Gilmour 2008-10-05T10:08:08Z 2008-10-05T10:16:52Z <p>In Java you use a cipher input stream to decrypt like so:</p> <pre><code>String path = ... ; InputStream = new CipherInputStream(new FileInputStream(path), ???); </code></pre> <p>But the cipher stream has no knowledge of what encryption algorithm you intend to use or the block size, padding strategy etc... New algorithms will be added all the time so hardcoding them is not practical. Instead we pass in a Cipher <strong>strategy object</strong> to tell it how to perform the decryption... </p> <pre><code>String path = ... ; Cipher strategy = ... ; InputStream = new CipherInputStream(new FileInputStream(path), strategy); </code></pre> <p>In general you use the strategy pattern any time you have any object that knows <strong>what</strong> it needs to do but not <strong>how</strong> to do it. Another good example is layout managers in Swing, although in that case it didnt work out quite as well, see <a href="http://madbean.com/anim/totallygridbag" rel="nofollow">Totally GridBag</a> for an amusing illustration.</p> <p>NB: There are two patterns at work here, as the wrapping of streams in streams is an example of <a href="http://en.wikipedia.org/wiki/Decorator_pattern" rel="nofollow">Decorator</a>.</p> http://stackoverflow.com/questions/168593/bad-habits-of-your-scrum-master/168619#168619 2 Answer by Garth Gilmour for Bad habits of your Scrum Master Garth Gilmour 2008-10-03T19:54:42Z 2008-10-03T19:54:42Z <p>Not helping with the push-back part of the process e.g. 'these are all the stores the customer wants in this iteration so thats what we have to do'.</p> http://stackoverflow.com/questions/167517/naked-objects-good-or-bad/167563#167563 3 Answer by Garth Gilmour for Naked Objects. Good or Bad Garth Gilmour 2008-10-03T15:56:45Z 2008-10-03T15:56:45Z <p>It has been successfully used <a href="http://www.nakedobjects.org/case-study/dsfa-intro.shtml" rel="nofollow">here in Ireland</a>.</p> <p>I think reasons why it hasnt been more popular are:</p> <ul> <li>You need a lot of confidence in the toolkits you are using</li> <li>It makes the GUI a risk factor instead of a no-brainer (both technically and in usability testing)</li> <li>Its not applicable to the web (as far as I know), which is where most of the focus is as present...</li> </ul> http://stackoverflow.com/questions/167453/xslt-abstractions/167534#167534 2 Answer by Garth Gilmour for XSLT Abstractions Garth Gilmour 2008-10-03T15:51:25Z 2008-10-03T15:51:25Z <p>You can give templates names and then call them via 'call-template'</p> <p>In XSLT 2.0 you can create your own functions (although I find the syntax tortuous)</p> <p>A wonderful area to explore is using XSLT to generate XSLT stylesheets. This lets you automate common conversion scenarios where 90% of the stylesheet is boilerplate. In order to do this you need to become familiar with 'namespace-alias'. Its a great way to expand your knowlege of the language.</p> http://stackoverflow.com/questions/166823/java-newbie-ish-inheritance-question/166849#166849 3 Answer by Garth Gilmour for Java: Newbie-ish inheritance question... Garth Gilmour 2008-10-03T13:30:24Z 2008-10-03T13:30:24Z <p>As long as each class has a default constructor:</p> <pre><code> public B instance() throws Exception { return getClass().newInstance(); } </code></pre> http://stackoverflow.com/questions/163565/what-is-the-best-book-or-piece-of-documentation-on-java-swing/163890#163890 1 Answer by Garth Gilmour for What is the best book or piece of documentation on Java Swing? Garth Gilmour 2008-10-02T18:38:01Z 2008-10-02T18:38:01Z <p>I learnt by pulling apart the good old SwingSet2.jar demo that comes with the JDK. It illustrates all the core features and tabs the code beside each demo.</p> <p>Its in JDK/demo/jfc/SwingSet2. Or you can launch it from <a href="http://java.sun.com/javase/technologies/desktop/javawebstart/demos.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha/163083#163083 0 Answer by Garth Gilmour for What is your (least) favorite syntax gotcha? Garth Gilmour 2008-10-02T15:41:52Z 2008-10-02T18:24:12Z <p>Prior to Eclipse:</p> <pre><code>class Person { Person (String name) { //parameter assigned to itself as field hidden name = name; } private String name; } </code></pre> http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha/163129#163129 20 Answer by Garth Gilmour for What is your (least) favorite syntax gotcha? Garth Gilmour 2008-10-02T15:49:48Z 2008-10-02T15:49:48Z <p>In C++</p> <pre><code>Employee e1("Dave","IT"); //OK Employee e2("Jane"); //OK Employee e3(); //ERROR - function prototype </code></pre> http://stackoverflow.com/questions/161529/is-there-a-best-practice-to-access-another-process-in-the-os-through-java/161553#161553 4 Answer by Garth Gilmour for is there a "best practice" to access another process in the OS through java? Garth Gilmour 2008-10-02T09:51:00Z 2008-10-02T09:51:00Z <p>From Java 1.4 onwards you can use memory mapped files to exchange arbitrary information with another process. See java.nio.MappedByteBuffer for details.</p> http://stackoverflow.com/questions/158778/implementation-patterns-a-function-returns-a-date-but-it-is-reasonable-that-a-d/158803#158803 0 Answer by Garth Gilmour for Implementation Patterns: a function returns a Date, but it is reasonable that a date won't be found, return null or try to apply the NULL object pattern? Garth Gilmour 2008-10-01T17:39:58Z 2008-10-01T17:39:58Z <p>If its not a performance hit I like to have an explicit query method and then use exceptions:</p> <pre><code>if(employee.hasCustomPayday()) { //throws a runtime exception if no payday Date d = emp.customPayday(); } </code></pre> http://stackoverflow.com/questions/158128/best-practices-considered-harmful/158344#158344 3 Answer by Garth Gilmour for Best practices considered harmful? Garth Gilmour 2008-10-01T15:58:03Z 2008-10-01T15:58:03Z <p>The article may well have been <a href="http://www.paulgraham.com/icad.html" rel="nofollow">Paul Grahams famous one</a> where he says:</p> <blockquote> <p>Technology often should be cutting-edge. In programming languages, as Erann Gat has pointed out, what "industry best practice" actually gets you is not the best, but merely the average. When a decision causes you to develop software at a fraction of the rate of more aggressive competitors, "best practice" is a misnomer.</p> </blockquote> <p>Lots of people quote this in blogs and presentations. For example Ted Newards great one on 'Rethinking Enterprise' at www.parleys.com</p> http://stackoverflow.com/questions/155388/interface-questions/155439#155439 3 Answer by Garth Gilmour for Interface questions. Garth Gilmour 2008-09-30T22:44:52Z 2008-09-30T23:03:07Z <p>It sounds like you are after something like this:</p> <pre><code>public static void test(MyInterface obj){ if(obj instanceof A) { A tmp = (A)obj; } else if(obj instanceof B) { B tmp = (B)obj; } else { //handle error condition } } </code></pre> <p>But please note this is very bad form and indicates something has gone seriously wrong in your design. If you don't have control of the interface then, as suggested by marcj, adding a second interface might be the way to go. Note you can do this whilst preserving binary compatibility.</p> http://stackoverflow.com/questions/155456/how-do-you-know-how-much-design-is-too-much/155495#155495 0 Answer by Garth Gilmour for How do you know how much design is too much? Garth Gilmour 2008-09-30T23:01:03Z 2008-09-30T23:01:03Z <p>Your design should give you the high level structure that lets you dive into code and sort out the low level details. </p> <p>If you are thinking about high level structure whilst writing the code then its time step away and go back to the whiteboard. Equally if you find yourself adding detail just to make the diagram look complete then its time to start coding.</p> <p>There's always the temptation to overly refine the design just to make it look good. But the best way to validate an uncertain design is to try it out in code. Most importantly remember you can jump back and forward between then two iteratively, rather than force yourself to try and get everything right first time.</p> http://stackoverflow.com/questions/154248/how-to-add-an-attribute-to-an-xml-node-in-java-1-4/154297#154297 0 Answer by Garth Gilmour for How to add an attribute to an XML node in Java 1.4 Garth Gilmour 2008-09-30T18:20:24Z 2008-09-30T18:58:31Z <p>Might the first child be a whitespace only text node or suchlike?</p> <p>Try:</p> <pre><code>System.out.println(doc.getFirstChild().getClass().getName()); </code></pre> <p>EDIT:</p> <p>Just looked it up in my own code, you need:</p> <pre><code>doc.getDocumentElement().getChildNodes(); </code></pre> <p>Or:</p> <pre><code>NodeList nodes = doc.getElementsByTagName("MyTag"); </code></pre> http://stackoverflow.com/questions/154159/developer-machine-justification/154169#154169 6 Answer by Garth Gilmour for Developer Machine Justification Garth Gilmour 2008-09-30T17:45:40Z 2008-09-30T17:45:40Z <p>A good one is:</p> <p>Extra time per compile <strong>X</strong> number of compiles per hour <strong>X</strong> hours in working day <strong>X</strong> days in month <strong>X</strong> number of developers</p> <p>This highlights how much of your (expensive) time is being wasted waiting for the machine to finish. You can do the same for test runs etc...</p> http://stackoverflow.com/questions/153184/the-best-c-book/153256#153256 3 Answer by Garth Gilmour for The best c++ book Garth Gilmour 2008-09-30T14:22:13Z 2008-09-30T14:22:13Z <p>1) <a href="http://rads.stackoverflow.com/amzn/click/0201721481" rel="nofollow">C++ Primer</a> 2) <a href="http://rads.stackoverflow.com/amzn/click/0201734842" rel="nofollow">C++ Templates: The Complete Guide</a> 3) <a href="http://rads.stackoverflow.com/amzn/click/0201704315" rel="nofollow">Modern C++ Design</a></p> http://stackoverflow.com/questions/152683/suggested-jdbc-books/152750#152750 0 Answer by Garth Gilmour for Suggested JDBC books Garth Gilmour 2008-09-30T12:07:10Z 2008-09-30T12:07:10Z <p>The <a href="http://rads.stackoverflow.com/amzn/click/013035290X" rel="nofollow">Java Transaction Pocessing book</a> does a great job of covering transactions within JDBC itself and across multiple resources via the JTA. Its the only text I know of that explores this critical area in real detail.</p> http://stackoverflow.com/questions/149873/if-you-dont-design-in-uml-then-what-do-you-design-in/149930#149930 7 Answer by Garth Gilmour for If you don't design in UML, then what do you design in? Garth Gilmour 2008-09-29T18:05:53Z 2008-09-29T19:12:40Z <p>Scott Ambler has a <a href="http://www.agilemodeling.com/artifacts/" rel="nofollow">great table on his website</a> that lists all the diagrams typically used on software projects, with links to examples.</p> <p>I find the UML diagrams useful but am continually annoyed by the 'everythings a box' mentality.</p> <p>EDIT: I tend to stay away from UML modelling tools as much as possible, because the act of creating a formal diagram inevitably creates pressure to 'polish' it till it looks like a quality product (regardless of how much value is in the diagram itself). </p> <p>It doesn't help that until recently most UML editors provided little help in tidying diagrams, e.g. draw a straight line between two boxes and a 'kink' appears in the middle because the elements are not absolutely horizontal. I've seen developers waste hours just trying to get all the lines horizontal or at 45 degrees. My personal favourite editor is <a href="http://www.magicdraw.com/" rel="nofollow">MagicDraw</a>, but <a href="http://www.sparxsystems.com.au/products/ea/index.html" rel="nofollow">Enterprise Architect</a> seems to be very popular so I use it a lot as well.</p> <p>When I do modelling inside the team I use UML + DFD + User Interface sketches till everyone is happy, then take a digital photo and post it on the project website. If it proves very useful it may last long enough to be 'formalized' - but most don't.</p> http://stackoverflow.com/questions/149939/jsp-create-scripting-variable-like-jspusebean-does/150013#150013 2 Answer by Garth Gilmour for jsp create scripting variable like jsp:usebean does Garth Gilmour 2008-09-29T18:29:13Z 2008-09-29T18:29:13Z <p>The way this is done in a Tag Library is by using a Tag Extra Info (TEI) class.</p> <p>You can find an <a href="http://www.stardeveloper.com/articles/display.html?article=2001081601&amp;page=2" rel="nofollow">example here</a>.</p> http://stackoverflow.com/questions/149777/whats-the-fundamental-difference-between-a-jsp-taglib-vs-including-a-jsp-page/149845#149845 2 Answer by Garth Gilmour for what's the fundamental difference between a jsp taglib vs including a jsp page? Garth Gilmour 2008-09-29T17:48:29Z 2008-09-29T17:48:29Z <p>When you use a taglib the container typically:</p> <ul> <li>Writes and calls a helper method from within _jspService</li> <li>Inside the helper method an instance of the tag class is created and standard methods are called (setParent(), doStartTag(), doEndTag() etc...)</li> </ul> <p>This keeps all the code within the same resource (the request does not get passed on to another component) and hence allows you to build in looping behaviour and access other components on the current page.</p> <p>There is overhead in learning Tag Libraries. But once you have got your first tag working its all downhill. Also the end result will be easier for non-developers to understand (assuming you choose good names for the tags).</p> http://stackoverflow.com/questions/167453/xslt-abstractions/167534#167534 Comment by Garth Gilmour on XSLT Abstractions Garth Gilmour 2008-10-03T19:58:12Z 2008-10-03T19:58:12Z No worries - let me know if you would like an example http://stackoverflow.com/questions/158778/implementation-patterns-a-function-returns-a-date-but-it-is-reasonable-that-a-d/158803#158803 Comment by Garth Gilmour on Implementation Patterns: a function returns a Date, but it is reasonable that a date won't be found, return null or try to apply the NULL object pattern? Garth Gilmour 2008-10-03T16:08:30Z 2008-10-03T16:08:30Z If the developer has already done the query then they shouldnt be forced to put in a try ... catch. It kinda wrecks the idiom. If an exception is thrown even though the query returned true then it probably deserves a runtime exception. http://stackoverflow.com/questions/166823/java-newbie-ish-inheritance-question/166849#166849 Comment by Garth Gilmour on Java: Newbie-ish inheritance question... Garth Gilmour 2008-10-03T15:44:33Z 2008-10-03T15:44:33Z I take the opposite approach - only declare multiple exceptions when the client would a) care and b) recover from the differently. Otherwise its just visual clutter e.g. demos and JUnit tests... http://stackoverflow.com/questions/154248/how-to-add-an-attribute-to-an-xml-node-in-java-1-4/154370#154370 Comment by Garth Gilmour on How to add an attribute to an XML node in Java 1.4 Garth Gilmour 2008-09-30T19:47:20Z 2008-09-30T19:47:20Z Totally agree with your update, if it is a different parser on the server it could be handling whitespace only text nodes differently, which would cause the error (depending on how getMapNode is written) http://stackoverflow.com/questions/154248/how-to-add-an-attribute-to-an-xml-node-in-java-1-4 Comment by Garth Gilmour on How to add an attribute to an XML node in Java 1.4 Garth Gilmour 2008-09-30T19:44:15Z 2008-09-30T19:44:15Z Being a valid node does not mean it is an element. What does 'getNodeName' print on both machines? http://stackoverflow.com/questions/149553/best-format-for-a-software-engineers-resume/149602#149602 Comment by Garth Gilmour on Best Format for a Software Engineer's Resume Garth Gilmour 2008-09-29T17:07:03Z 2008-09-29T17:07:03Z Imagine a recruiter or a manager with a pile of 100 CV's for a position. He/she already knows what they are, what they need to do is organize them. So you want to make it as easy as possible from them to find your name and hopefully get the early interview... http://stackoverflow.com/questions/146311/immutable-class-should-be-final/146336#146336 Comment by Garth Gilmour on immutable class should be final? Garth Gilmour 2008-09-28T18:38:36Z 2008-09-28T18:38:36Z I don't think there's anything wrong with that, as long as you are the only person extending from Shape. But you would have to create precise guidelines for other developers and be confident they would follow them. So I think the argument is that 99.9% of the time its not worth the effort... http://stackoverflow.com/questions/141611/iterating-over-enum-constants-in-jsp/141658#141658 Comment by Garth Gilmour on iterating over Enum constants in JSP Garth Gilmour 2008-09-26T21:06:03Z 2008-09-26T21:06:03Z There may well be but I dont know of it, just had a go: public static &lt;T extends Enum&lt;T&gt;&gt; Enum&lt;T&gt;[] getValues(Class&lt;T&gt; klass) { try { Method m = klass.getMethod(&quot;values&quot;, null); Object obj = m.invoke(null, null); return (Enum&lt;T&gt;[])obj; } catch(Exception ex) { return null; } } http://stackoverflow.com/questions/138999/how-to-output-html-from-jsp-block/139018#139018 Comment by Garth Gilmour on How to output HTML from JSP <%! ... %> block? Garth Gilmour 2008-09-26T17:00:21Z 2008-09-26T17:00:21Z The call to someOutput would not be placed in an out.write statement unless you used the expression syntax &lt;%= %&gt;. When you use the scriptlet syntax it is just inserted inline.