User Marcio Aguiar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T08:53:03Zhttp://stackoverflow.com/feeds/user/4213http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48179/video-thumbnails-in-java1Video Thumbnails in JavaMarcio Aguiar2008-09-07T05:35:36Z2009-11-18T14:41:56Z
<p>I want to generate a thumbnail preview of videos in Java. I'm mostly JMF and video manipulation alienated. </p>
<ul>
<li>Is there an easy way to do it?</li>
<li>What about codecs? Will I have to deal with it?</li>
<li>Any video type is suported? (including Quicktime)</li>
</ul>
http://stackoverflow.com/questions/56867/interface-vs-base-class/56894#5689430Answer by Marcio Aguiar for Interface vs Base classMarcio Aguiar2008-09-11T15:32:11Z2009-08-25T03:24:21Z<p>Well, Josh Bloch said himself in <a href="http://rads.stackoverflow.com/amzn/click/0321356683" rel="nofollow">Effective Java 2d</a>:</p>
<h2>Prefer interfaces over abstract classes</h2>
<p>Some main points:</p>
<blockquote>
<ul>
<li><p><strong>Existing classes can be easily retrofitted to implement a new
interface</strong>. All you have to do is add
the required methods if they don’t yet
exist and add an implements clause to
the class declaration. </p></li>
<li><p><strong>Interfaces are ideal for defining mixins</strong>. Loosely speaking, a
mixin is a type that a class can
implement in addition to its “primary
type” to declare that it pro- vides
some optional behavior. For example,
Comparable is a mixin interface that
allows a class to declare that its
instances are ordered with respect to
other mutu- ally comparable objects.</p></li>
<li><p><strong>Interfaces allow the construction of nonhierarchical type
frameworks</strong>. Type hierarchies are
great for organizing some things, but
other things don’t fall neatly into a
rigid hierarchy. </p></li>
<li><p><strong>Interfaces enable safe, powerful functionality enhancements</strong> via the
wrap- per class idiom. If you use
abstract classes to define types, you
leave the programmer who wants to add
functionality with no alternative but
to use inheritance. </p></li>
</ul>
<p>Moreover, you can combine the virtues
of interfaces and abstract classes by
providing an abstract skeletal
implementation class to go with each
nontrivial interface that you export.</p>
</blockquote>
<p>On the other hand, interfaces are very hard to evolve. If you add a method to an interface it'll break all of it's implementations.</p>
<p>PS.: Buy the book. It's a lot more detailed.</p>
http://stackoverflow.com/questions/194538/class-member-organization3Class member organizationMarcio Aguiar2008-10-11T20:05:25Z2009-07-20T03:25:37Z
<p>What is the best way to sort class members?</p>
<p>I'm in conflict with a team member about this. He suggests that we should sort the members alphabetically. I think it's better to organize in a semantic manner: important attributes first, related methods together, etc.</p>
<p>What do you think?</p>
http://stackoverflow.com/questions/90578/best-way-to-really-grok-java-for-a-c-guy/90655#9065521Answer by Marcio Aguiar for Best way to really grok Java for a C# guyMarcio Aguiar2008-09-18T07:12:42Z2009-05-15T19:26:04Z<p>This <a href="http://crfdesign.net/programming/top-10-differences-between-java-and-c" rel="nofollow">guy here</a> had to make the inverse transition. So he listed the top 10 differences of Java and C#. I'll take his topics and show how it is made in Java:</p>
<h2>Gotcha #10 - Give me my standard output!</h2>
<p>To print to the standard output in Java:</p>
<pre><code>System.out.println("Hello");
</code></pre>
<h2>Gotcha #9 - Namespaces == Freedom</h2>
<p>In Java you don't have the freedom of namespaces. The folder structure of your class must match the package name. For example, a class in the package <em>org.test</em> must be in the folder <em>org/test</em></p>
<h2>Gotcha #8 - What happened to super?</h2>
<p>In Java to refer to the superclass you use the reserved word <strong>super</strong> instead of <strong>base</strong></p>
<h2>Gotcha #7 - Chaining constructors to a base constructor</h2>
<p>You don't have this in Java. You have to call the constructor by yourself</p>
<h2>Gotcha #6 - Dagnabit, how do I subclass an existing class?</h2>
<p>To subclass a class in Java do this:</p>
<pre><code>public class A extends B {
}
</code></pre>
<p>That means class A is a subclass of class B. In C# would be "class A : B"</p>
<h2>Gotcha #5 - Why don’t constants remain constant?</h2>
<p>To define a constant in Java use the keyword <strong>final</strong> instead of <strong>const</strong></p>
<h2>Gotcha #4 - Where is ArrayList, Vector or Hashtable?</h2>
<p>The most used data structures in java are HashSet, ArrayList and HashMap. They implement Set, List and Map. Of course, there is a bunch more. Take a look at <a href="http://java.sun.com/docs/books/tutorial/collections/index.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/collections/index.html</a></p>
<h2>Gotcha #3 - Of Accessors and Mutators (Getters and Setters)</h2>
<p>You don't have the properties facility in Java. You have to declare the gets and sets methods for yourself. Of course, most IDEs can do that automatically.</p>
<h2>Gotcha #2 - I can’t override!?</h2>
<p>You don't have to declare a method <strong>virtual</strong> in Java. All methods - except those declared <strong>final</strong> - can be overridden in Java.</p>
<h2>And the #1 gotcha…</h2>
<p>In Java the primitive types int, float, double, char and long are not Objects like in C#. All of them have a respective object representation, like Integer, Float, Double, etc.</p>
<p>That's it. Don't forget to see the original link: <a href="http://crfdesign.net/programming/top-10-differences-between-java-and-c" rel="nofollow">http://crfdesign.net/programming/top-10-differences-between-java-and-c</a></p>
<p>There's a more detailed discussion.</p>
http://stackoverflow.com/questions/784214/time-restricted-service1Time restricted serviceMarcio Aguiar2009-04-24T01:35:03Z2009-04-25T17:45:20Z
<p>Hi,</p>
<p>i'm developing an app that make requests to the Musicbrainz webservice. I read in the musicbrainz manual to not make more than one request per second to the webservice or the client IP will be blocked. </p>
<p>What architecture do you suggest in order to make this restriction transparent to the service client. </p>
<ul>
<li>I would like to call a method (getAlbuns for example) and it should only make the request 1sec after the last request. </li>
<li>I also want to call 10 request at once and the service should handle the queueing, returning the results when avaiable (Non-blocking). </li>
</ul>
<p>Thanks!</p>
http://stackoverflow.com/questions/39374/code-reading-problem/39465#394651Answer by Marcio Aguiar for Code Reading ProblemMarcio Aguiar2008-09-02T13:10:31Z2009-01-06T16:37:04Z<p>I don't think it's a subjective question, but it's too broad! It's not just about commenting and giving good variables names. It deals with how humans comprehends code. So your system must be implemented in a way that the reader can easily construct a mental model of its design in two way:</p>
<ul>
<li><p>Top-down: assuming the user knows the system domain, he tends to make assumptions on how it would be implemented, so he'll scan the system packages and classes looking for entities he can identify. Giving good names to your classes and properly modularizing it would help very much.</p></li>
<li><p>Bottom-up: once the user reaches a portion of code he'll start navigation from there, building chunks of knowledge. If your system has low cohesion and lots of implicit dependencies the user will be lost.</p></li>
</ul>
<p>Kent Beck adopts three principles: Communication, Simplicity and Flexibility. Of course, sometimes you'll have to trade simplicity for flexibility, and vice-versa.</p>
<p>This could go on and on. The answer to this question fits in a large book. As @rmbarnes suggested, buy and read Code Complete 2. I also suggest <a href="http://rads.stackoverflow.com/amzn/click/0321413091" rel="nofollow">Implementation Patterns</a> by Kent Beck - its highly related to your question.</p>
http://stackoverflow.com/questions/96922/why-use-jython-when-you-could-just-use-java/97359#973593Answer by Marcio Aguiar for Why use Jython when you could just use Java?Marcio Aguiar2008-09-18T21:49:18Z2008-11-03T17:45:54Z<p>Some tasks are easier in some languages then others. If I had to parse some file, I'd choose Python over Java in a blink.</p>
http://stackoverflow.com/questions/66505/how-to-handle-static-fields-that-vary-by-implementing-class/66602#666021Answer by Marcio Aguiar for How to handle static fields that vary by implementing classMarcio Aguiar2008-09-15T20:27:24Z2008-10-22T21:05:54Z<pre><code>public interface ICommand {
String getName();
}
public class RealCommand implements ICommand {
public String getName() {
return "name";
}
}
</code></pre>
<p>Simple as that. Why bother having a static field?</p>
<p><hr /></p>
<p>Obs.: Do not use a field in an abstract class that should be initiated in a subclass (like <a href="http://stackoverflow.com/questions/66505/how-to-handle-static-fields-that-vary-by-implementing-class#66681">David B</a> suggestion). What if someone extends the abstract class and forget to initiate the field? </p>
http://stackoverflow.com/questions/118408/failed-software-development/118456#1184562Answer by Marcio Aguiar for Failed software developmentMarcio Aguiar2008-09-23T00:40:14Z2008-09-23T00:40:14Z<p>An interesting list of IT project failures along withs costs and reasons
:
<a href="http://it-project-failures.blogspot.com/" rel="nofollow">http://it-project-failures.blogspot.com/</a></p>
http://stackoverflow.com/questions/48744/finding-the-phone-numbers-in-50-000-html-pages/48788#487882Answer by Marcio Aguiar for Finding the phone numbers in 50,000 HTML pagesMarcio Aguiar2008-09-07T21:06:48Z2008-09-22T15:31:47Z<p>Made this in Java. The regex was borrowed from <a href="http://forums.msdn.microsoft.com/en-US/regexp/thread/8d4846c0-4eca-427a-b34a-856c7f8695cb/" rel="nofollow">this forum</a>.</p>
<pre><code> final String regex = "[\\s](\\({0,1}\\d{3}\\){0,1}" +
"[- \\.]\\d{3}[- \\.]\\d{4})|" +
"(\\+\\d{2}-\\d{2,4}-\\d{3,4}-\\d{3,4})";
final Pattern phonePattern = Pattern.compile(regex);
/* The result set */
Set<File> files = new HashSet<File>();
File dir = new File("/initDirPath");
if (!dir.isDirectory()) return;
for (File file : dir.listFiles()) {
if (file.isDirectory()) continue;
BufferedReader reader = new BufferedReader(new FileReader(file));
String line;
boolean found = false;
while ((line = reader.readLine()) != null
&& !found) {
if (found = phonePattern.matcher(line).find()) {
files.add(file);
}
}
}
for (File file : files) {
System.out.println(file.getAbsolutePath());
}
</code></pre>
<p>Performed some tests and it went ok! :)
Remeber I'm not trying to use the best design here. Just implemented the algorithm for that.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48875#4887519Answer by Marcio Aguiar for Computer Language puns and jokesMarcio Aguiar2008-09-07T23:05:37Z2008-09-21T19:50:53Z<p><img src="http://hacked.free-bsd.org/funstuff/pics/computer_science_lesson.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/104185/jpa-is-not-good-enough/104659#1046591Answer by Marcio Aguiar for JPA is not good enoughMarcio Aguiar2008-09-19T19:11:57Z2008-09-19T19:11:57Z<p>Hibernate has been a long time in the road. That's why it has many functions not avaiable in JPA yet. But with time JPA will catch up. Until then, use JPA and Hibernate specific settings where necessary. If you need to switch later, it'll be a lot easier.</p>
http://stackoverflow.com/questions/103848/what-is-your-favourite-area-of-the-java-api/103925#1039252Answer by Marcio Aguiar for What is Your Favourite Area of the Java API?Marcio Aguiar2008-09-19T17:32:47Z2008-09-19T17:38:45Z<p>java.util is very util. Why? </p>
<ul>
<li>Collections. Lots of them!</li>
<li>Date and Time classes</li>
<li>Text scanner</li>
<li>Dependency injection utility (since Java 6)</li>
<li>A timer thread</li>
<li>Random numbers</li>
<li>The observer pattern is there</li>
<li>Java properties</li>
</ul>
http://stackoverflow.com/questions/69923/stored-procedures-reverse-engineering6Stored procedures reverse engineeringMarcio Aguiar2008-09-16T06:54:50Z2008-09-19T16:48:50Z
<p>We're having problem with a huge number of legacy stored procedures at work. Do you guys recommend any tool the can help better understand those procedures? Some kind of reverse engineering that indentifies inter-procedure dependencies and/or procedure vs. tables dependencies. Can be a free or commercial tool.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/95305/looking-for-regex-to-extract-email-addresses-from-etc-passwd/97803#97803-1Answer by Marcio Aguiar for Looking for regex to extract email addresses from /etc/passwdMarcio Aguiar2008-09-18T22:51:03Z2008-09-18T22:51:03Z<p>How about the standard <a href="http://tools.ietf.org/html/rfc2822" rel="nofollow">RFC 2822</a>:</p>
<pre><code>(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])
</code></pre>
<p>Yep. That's it. :)</p>
http://stackoverflow.com/questions/95547/should-i-catch-exceptions-only-to-log-them/95690#956900Answer by Marcio Aguiar for Should I catch exceptions only to log them?Marcio Aguiar2008-09-18T18:56:39Z2008-09-18T18:56:39Z<p>It's good practice is to <strong>translate the exceptions</strong>. Don't just log them. If you want to know the specific reason an exception was thrown, throw specific exceptions:</p>
<pre><code>public void connect() throws ConnectionException {
try {
File conf = new File("blabla");
...
} catch (FileNotFoundException ex) {
LOGGER.error("log message", ex);
throw new ConnectionException("The configuration file was not found", ex);
}
}
</code></pre>
http://stackoverflow.com/questions/95134/how-does-jstls-sql-tag-work/95253#952532Answer by Marcio Aguiar for How does jstl's sql tag work?Marcio Aguiar2008-09-18T18:21:23Z2008-09-18T18:21:23Z<p>I wouldn't even bother. <strong>Remove</strong> this sql from you jsp! :) SQL + Code is already bad enough. SQL + Presentation = Big no!</p>
<p>Anyway, it must create a regular JDBC connection with the datasource, send the query to the DBMS and close the connection. </p>
http://stackoverflow.com/questions/95055/java-best-place-to-begin-learning-basic-networking/95210#952101Answer by Marcio Aguiar for Java: Best Place to Begin Learning Basic NetworkingMarcio Aguiar2008-09-18T18:17:38Z2008-09-18T18:17:38Z<p>I recommend you to first learn networking. If you have time read the <a href="http://rads.stackoverflow.com/amzn/click/0133499456" rel="nofollow">Tanenbaum book</a>, the greatest reference in networking. If you want a quick leard, here is a road map:</p>
<ul>
<li>OSI layers</li>
<li>UDP and TCP/IP</li>
<li>Sockets</li>
<li>Broadcast and Multicast</li>
<li>Network security</li>
</ul>
<p>Then go with Java: Socket, ServerSocket, DatagramSocket, RMI, etc.</p>
http://stackoverflow.com/questions/90907/unit-testing-a-java-servlet/90993#909933Answer by Marcio Aguiar for Unit testing a java servletMarcio Aguiar2008-09-18T08:43:28Z2008-09-18T08:43:28Z<p>Are you calling the doPost and doGet methods manually in the unit tests? If so you can override the HttpServletRequest methods to provide mock objects.</p>
<pre><code>myServlet.doGet(new HttpServletRequestWrapper() {
public HttpSession getSession() {
return mockSession;
}
...
}
</code></pre>
<p>The <a href="http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/http/HttpServletRequestWrapper.html" rel="nofollow">HttpServletRequestWrapper</a> is a convenience Java class. I suggest you to create a utility method in your unit tests to create the mock http requests:</p>
<pre><code>public void testSomething() {
myServlet.doGet(createMockRequest(), createMockResponse());
}
protected HttpServletRequest createMockRequest() {
HttpServletRequest request = new HttpServletRequestWrapper() {
//overrided methods
}
}
</code></pre>
<p>It's even better to put the mock creation methods in a base servlet superclass and make all servlets unit tests to extend it.</p>
http://stackoverflow.com/questions/90851/is-it-just-me-or-are-interfaces-overused/90869#9086916Answer by Marcio Aguiar for Is it just me or are interfaces overused?Marcio Aguiar2008-09-18T08:13:13Z2008-09-18T08:20:37Z<p>I completelly <strong>AGREE WITH YOU</strong>! </p>
<p>I stated this in my ansewer: <a href="http://stackoverflow.com/questions/90657/mocking-method-results#90687">http://stackoverflow.com/questions/90657/mocking-method-results#90687</a></p>
<p>And I had to edit my answer twice to be clearer, because almost all answers suggested creating an interface to an <strong>UTILITY</strong> class. This kind of answer was even accepted. You should create an interface for testing purposes if it makes sense - which it does NOT in the context of the question.</p>
<p>Creating an interface is not even the biggest problem. I think the worst is obligate a client class to <strong>inject</strong> the interface implementation when calling a simple operation. This will increase the complexity all code using that class. This is very bad. It's a hack! A BAD hack! Why is it bad?</p>
<ul>
<li>It's an Utility class. It's not likely to change implementation. So why even bother adding other layer of abstraction?!</li>
<li>Was suggested over and over to inject the Utility class implementation in classes that uses it. Now code that looks like this: <em>myClass.loadData()</em> will look like this: <em>myClass.loadData(new HelperImplementation())</em>. <strong>NO!!</strong></li>
<li>+1 to all the points stated by Mike</li>
<li>There are other - more elegant - ways.</li>
<li>Must be other reasons why it's bad. :)</li>
</ul>
http://stackoverflow.com/questions/90813/best-practices-principles-for-gui-design/90822#908221Answer by Marcio Aguiar for Best Practices & Principles for GUI designMarcio Aguiar2008-09-18T07:59:56Z2008-09-18T07:59:56Z<p>Related question: <a href="http://stackoverflow.com/questions/51050/what-are-some-good-usability-guidelines-an-average-developer-should-follow">http://stackoverflow.com/questions/51050/what-are-some-good-usability-guidelines-an-average-developer-should-follow</a></p>
http://stackoverflow.com/questions/90657/mocking-method-results/90687#906873Answer by Marcio Aguiar for Mocking method resultsMarcio Aguiar2008-09-18T07:19:56Z2008-09-18T07:55:03Z<p>You have a problem there. I don't know if thats a simplified scenario of your code, but if the Helper class is used that way, then your code is not testable. First, the Helper class is used directly, so you <strong>can't replace it with a mock</strong>. Second, you're calling a static method. I don't know about C#, but in Java you <strong>can't override static methods</strong>.</p>
<p>You'll have to do some refactoring to be able to inject a mock object with a dummy GetSomeData() method.</p>
<p>In this simplified version of your code is difficult to give you a straight answer. You have some options:</p>
<ul>
<li>Create an interface for the Helper class and provide a way for the client to inject the Helper implementation to the MyClass class. But if Helper is just really a utility class it doesn't make much sense.</li>
<li>Create a protected method in MyClass called getSomeData and make it only call Helper.LoadSomeData. Then replace the call to Helper.LoadSomeData in LoadData with for getSomeData. Now you can mock the getSomeData method to return the dummy value.</li>
</ul>
<p><hr /></p>
<p><strong>Beware of simply creating an interface to Helper class</strong> and inject it via method. This can expose implementation details. Why a client should provide an implementation of a <strong>utility</strong> class to call a simple operation? This will increase the complexity of MyClass clients.</p>
http://stackoverflow.com/questions/90682/how-do-i-create-a-thread-dump-of-a-java-web-start-application/90794#907940Answer by Marcio Aguiar for How do I create a thread dump of a Java Web Start applicationMarcio Aguiar2008-09-18T07:50:27Z2008-09-18T07:50:27Z<p>Since Java 5 you have the getStackTrace() method of Thread class. For prior versions you can do:</p>
<pre><code>Thread.currentThread().dumpStack();
</code></pre>
<p>This will print the stack trace to System.out</p>
http://stackoverflow.com/questions/69923/stored-procedures-reverse-engineering/73396#733960Answer by Marcio Aguiar for Stored procedures reverse engineeringMarcio Aguiar2008-09-16T15:11:31Z2008-09-16T15:11:31Z<p>Thanks fo both answers!</p>
<p>Yes @<a href="#69980" rel="nofollow">tyler</a>, we need luck :)</p>
http://stackoverflow.com/questions/4724/learning-lisp-why/69879#698798Answer by Marcio Aguiar for Learning Lisp - Why ?Marcio Aguiar2008-09-16T06:44:04Z2008-09-16T06:44:04Z<p>In response to <a href="http://stackoverflow.com/questions/4724/learning-lisp-why#4737">@lassevk</a>:</p>
<p><a href="http://xkcd.com/297/" rel="nofollow"><img src="http://imgs.xkcd.com/comics/lisp_cycles.png" alt="alt text" /></a></p>
http://stackoverflow.com/questions/64213/what-is-the-most-useful-multi-purpose-open-source-library-for-java/66427#664270Answer by Marcio Aguiar for What is the most useful multi-purpose open-source library for java?Marcio Aguiar2008-09-15T20:07:56Z2008-09-15T20:07:56Z<p>Take a look at <strong><a href="http://code.google.com/p/jmate/" rel="nofollow">jmate</a></strong> project. It contains really helpful methods for strings, collections and IO operations (for now). </p>
<p>Look some <a href="http://javaadami.blogspot.com/2008/08/whenever-scripting-language-wants-to.html" rel="nofollow">examples here</a>.</p>
http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/66307#663077Answer by Marcio Aguiar for What is the best way to implement constants in Java ?Marcio Aguiar2008-09-15T19:58:22Z2008-09-15T19:58:22Z<p>It is a <strong>BAD PRACTICE</strong> to use interfaces just to hold constants (named <em>constant interface pattern</em> by Josh Bloch). Here's Josh advices:</p>
<blockquote>
<p>If the constants are strongly tied to
an existing class or interface, you
should add them to the class or
interface. For example, all of the
boxed numerical primitive classes,
such as Integer and Double, export
MIN_VALUE and MAX_VALUE constants. If
the constants are best viewed as
members of an enumerated type, you
should export them with an <strong>enum</strong>
type. Otherwise, you should export the
constants with a noninstantiable
utility class.</p>
</blockquote>
<p>Example:</p>
<pre><code>// Constant utility class
package com.effectivejava.science;
public class PhysicalConstants {
private PhysicalConstants() { } // Prevents instantiation
public static final double AVOGADROS_NUMBER = 6.02214199e23;
public static final double BOLTZMANN_CONSTANT = 1.3806503e-23;
public static final double ELECTRON_MASS = 9.10938188e-31;
}
</code></pre>
<p>About the naming convetion:</p>
<blockquote>
<p>By convention, such fields have names
consisting of capital letters, with
words separated by underscores. It is
critical that these fields contain
either primitive values or references
to immutable objects.</p>
</blockquote>
http://stackoverflow.com/questions/56707/java-right-click-does-not-make-a-selection-what-is-the-easiest-way-to-solve-thi/58166#581661Answer by Marcio Aguiar for Java Right Click does not make a selection. What is the easiest way to solve this globally?Marcio Aguiar2008-09-12T02:09:23Z2008-09-13T22:06:39Z<p>Using the <a href="http://java.sun.com/docs/books/tutorial/uiswing/components/rootpane.html" rel="nofollow">Glass Pane</a> will do the trick.</p>
<p><a href="http://weblogs.java.net/blog/joshy/archive/2003/10/swing_hack_4_th.html" rel="nofollow">Here's a tutorial</a> on how to use the glass pane to get the right click button and redispatch it to the right component.</p>
<p><hr /></p>
<p>As the glass pane is not a solution in this case, I suggest you take a look at the <a href="http://java.sun.com/javase/6/docs/api/java/awt/Toolkit.html" rel="nofollow">Toolkit</a> class. Specificaly the addAWTEventListener method. You can add a global event listener with it. To add a mouse event listener:</p>
<pre><code>Toolkit.getDefaultToolkit().
addAWTEventListener(listener, AWTEvent.MOUSE_EVENT_MASK);
</code></pre>
<p>Cheers</p>
http://stackoverflow.com/questions/59557/html-to-markdown-with-java/59710#597105Answer by Marcio Aguiar for HTML to Markdown with JavaMarcio Aguiar2008-09-12T18:31:30Z2008-09-12T18:46:36Z<p>Use this <a href="http://www.lowerelement.com/Geekery/XML/XHTML-to-Markdown.html" rel="nofollow"><strong>XSLT</strong></a>. </p>
<p>If you need help using XSLT and Java here's a code snippet:</p>
<blockquote>
<p>public static void main(String[] args) throws Exception {</p>
<pre><code> File xsltFile = new File("mardownXSLT.xslt");
Source xmlSource = new StreamSource(new StringReader(theHTML));
Source xsltSource = new StreamSource(xsltFile);
TransformerFactory transFact =
TransformerFactory.newInstance();
Transformer trans = transFact.newTransformer(xsltSource);
StringWriter result = new StringWriter();
trans.transform(xmlSource, new StreamResult(result));
}
</code></pre>
</blockquote>
http://stackoverflow.com/questions/56843/looking-for-an-hql-builder-hibernate-query-language/57141#571412Answer by Marcio Aguiar for Looking for an HQL builder (Hibernate Query Language)Marcio Aguiar2008-09-11T17:32:59Z2008-09-11T17:32:59Z<p>Criteria API does not provide all functionality avaiable in HQL. For example, you cannot do more than one join over the same column.</p>
<p>Why don't you use <strong><a href="http://www.javalobby.org/java/forums/t33053.html" rel="nofollow">NAMED QUERIES</a></strong>? The look much more clean:</p>
<pre><code>Person person = session.getNamedQuery("Person.findByName")
.setString(0, "Marcio")
.list();
</code></pre>
http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/112186#112186Comment by Marcio Aguiar on What is the worst interviewee answer?Marcio Aguiar2009-05-21T16:28:27Z2009-05-21T16:28:27ZI think making coffee is easier than programming and don't demand a learning motivation..http://stackoverflow.com/questions/784214/time-restricted-service/784259#784259Comment by Marcio Aguiar on Time restricted serviceMarcio Aguiar2009-04-25T06:53:57Z2009-04-25T06:53:57ZBut I don't want to make a request every second. I want to make sure, when the client make a request, that it only execute 1sec after the last one.http://stackoverflow.com/questions/784214/time-restricted-serviceComment by Marcio Aguiar on Time restricted serviceMarcio Aguiar2009-04-25T06:53:09Z2009-04-25T06:53:09ZYes, that's right!http://stackoverflow.com/questions/194538/class-member-organizationComment by Marcio Aguiar on Class member organizationMarcio Aguiar2008-10-11T21:18:29Z2008-10-11T21:18:29ZBecause there's no right answer I'll not accept any. Anyway, I voted up some.http://stackoverflow.com/questions/175545/worst-technobabble-youve-ever-heard/175561#175561Comment by Marcio Aguiar on Worst technobabble you've ever heardMarcio Aguiar2008-10-07T03:21:52Z2008-10-07T03:21:52ZHere in Brazil the G has a J sound. Everybody here says Jigabytes. To sound correct it had to be written Guigabytes :)http://stackoverflow.com/questions/154724/when-would-you-use-a-weakhashmap-or-a-weakreference/154771#154771Comment by Marcio Aguiar on When would you use a WeakHashMap or a WeakReference?Marcio Aguiar2008-09-30T23:43:27Z2008-09-30T23:43:27ZI agree with JesperEhttp://stackoverflow.com/questions/118401/how-to-prevent-multiple-classes-for-the-same-business-objectComment by Marcio Aguiar on How to prevent multiple classes for the same business object?Marcio Aguiar2008-09-23T00:30:16Z2008-09-23T00:30:16ZCouldn't really understand what you want.http://stackoverflow.com/questions/117492/class-naming-conventions-layoutComment by Marcio Aguiar on Class Naming Conventions / LayoutMarcio Aguiar2008-09-22T20:54:11Z2008-09-22T20:54:11ZCan't you modify the UserEntity class? I'd add the lock method there.http://stackoverflow.com/questions/96922/why-use-jython-when-you-could-just-use-java/97540#97540Comment by Marcio Aguiar on Why use Jython when you could just use Java?Marcio Aguiar2008-09-22T01:39:41Z2008-09-22T01:39:41ZNothing stop Java from having an utility class that do UrlUtil.open("www.google.com").read(). http://stackoverflow.com/questions/90657/mocking-method-results/90687#90687Comment by Marcio Aguiar on Mocking method resultsMarcio Aguiar2008-09-19T07:11:24Z2008-09-19T07:11:24ZYes, I know the term. Yes, VERY GOOD when done right. Not the case here.http://stackoverflow.com/questions/100161/is-eclipse-3-4-ganymede-memory-usage-significantly-higher-than-3-2Comment by Marcio Aguiar on Is Eclipse 3.4 (Ganymede) memory usage significantly higher than 3.2?Marcio Aguiar2008-09-19T07:10:22Z2008-09-19T07:10:22ZI've noticed the same thing. I went back to 3.2http://stackoverflow.com/questions/69923/stored-procedures-reverse-engineering/93967#93967Comment by Marcio Aguiar on Stored procedures reverse engineeringMarcio Aguiar2008-09-19T05:32:28Z2008-09-19T05:32:28ZCONNECT BY would definetily simplify this code.http://stackoverflow.com/questions/69923/stored-procedures-reverse-engineering/96629#96629Comment by Marcio Aguiar on Stored procedures reverse engineeringMarcio Aguiar2008-09-19T05:31:01Z2008-09-19T05:31:01ZWhich one? <a href="http://www.apexsql.com/purchase.asp" rel="nofollow">apexsql.com/purchase.asp</a>http://stackoverflow.com/questions/97721/what-does-it-mean-when-an-explanation-includes-the-word-basically/97753#97753Comment by Marcio Aguiar on What does it mean when an explanation includes the word "basically?"Marcio Aguiar2008-09-18T22:47:30Z2008-09-18T22:47:30Zhahaha I was going to answer exactly that. +1http://stackoverflow.com/questions/97435/regexes-and-multiple-multi-character-delimeters/97470#97470Comment by Marcio Aguiar on Regexes and multiple multi-character delimetersMarcio Aguiar2008-09-18T22:38:36Z2008-09-18T22:38:36ZThis is the right answer