User Mario Ortegón - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T07:26:44Zhttp://stackoverflow.com/feeds/user/2309http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1922467/junit-report-on-eclipse2JUnit report on EclipseMario Ortegón2009-12-17T15:22:02Z2009-12-17T21:44:35Z
<p>The JUnit integration with eclipse is very nice. However, I would like a feature to be able to generate a quick report from the Unit Tests. It is possible to do so when running a headless build (and my nightly build is configured to do so), but sometimes I want to generate a report from the UI.</p>
<p>Is there anyway to do this? command line options maybe? an extra plugin? maybe the functionality is already there and I can't find it?</p>
http://stackoverflow.com/questions/449983/create-rpm-package-from-ant-script-under-windows2Create RPM package from ANT script under WindowsMario Ortegón2009-01-16T10:15:07Z2009-11-26T11:19:05Z
<p>I need to create an RPM package from an ANT script that runs on a Windows computer. This package must contain the result classes from the build plus some other, additional resources.</p>
<p>I guess there should be some program somewhere that can be invoked from the command line to create this package.</p>
<p>The reason why I want to do this under windows is that we have a script that builds installers for several different platforms, and everything is already configured for windows so I want to avoid the pain of migrating everything to linux.</p>
<p>Do you know how could this be achieved?</p>
<p>EDIT:
I've used a separate Linux machine to do this. I copy all files using the scp task, then execute the rpm command remotely using the ssh task. If this task returns a success code, I copy the resulting rpm back with scp.</p>
http://stackoverflow.com/questions/1754849/group-and-counting-a-string-in-ant0Group and counting a String in AntMario Ortegón2009-11-18T09:56:27Z2009-11-18T14:20:19Z
<p>I have the following problem. I have something like 300 Eclipse Plugins. Now, as part of an ant script I want to read all MANIFEST.MF files and then look for the execution environment string.</p>
<p>Bundle-RequiredExecutionEnvironment: J2SE-1.4</p>
<p>Now, this string has several possible values. I want to create a report that lists the execution environment for each plug-in. That part is not really a problem as I can use some kind of regexp to obtain it.</p>
<p>My problem is that I want also to create some kind of summary for tracking changes at a glance, something like:</p>
<ul>
<li>JS2E-1.4: 50 Plugins</li>
<li>JS2E-1.5: 150 Plugins</li>
<li>JS2E-1.6: 74 Plugins</li>
</ul>
<p>Anyone has some suggestions on how could I go around this?</p>
<p>EDIT: Reason for using ANT is that I want to integrate it with a nightly build script</p>
http://stackoverflow.com/questions/1741003/dos-and-donts-while-using-references-in-java/1741025#17410252Answer by Mario Ortegón for Dos and Don'ts while using references in JavaMario Ortegón2009-11-16T09:23:44Z2009-11-16T09:30:54Z<p>If you mean the SoftReference, WeakReference and PhantomReferences:</p>
<p>Dos:</p>
<ul>
<li><p>Use soft references to cache objects that are expensive in creation or memory wise. This will give your application a chance to remove objects before running out of memory, at the cost of a performance decrease.</p></li>
<li><p>Use WeakReferences when using the Observer pattern if you need to hold a reference to the class where you register your Observer. That guarantees that the listener won't prevent the parent from being garbage collected.</p></li>
</ul>
<p>Don'ts:</p>
<p>Soft and weak referenced objects can be removed at any time, so never do:</p>
<pre><code>if (reference.get() != null){
Object o = reference.get();
// Do something with o....
}
</code></pre>
<p>It might be the case that o receives a null pointer, as there is no guarantee when the garbage collector will be actived.</p>
http://stackoverflow.com/questions/520546/ant-task-to-check-if-a-file-exists6Ant task to check if a file exists?Mario Ortegón2009-02-06T14:49:43Z2009-11-12T03:34:48Z
<p>Is there an ANT Task that would execute a block only if a given file exists? I have the problem that I have a generic ant script that should do some special processing but only if a specific configuration file is present.</p>
http://stackoverflow.com/questions/1690338/drawing-into-an-eclipse-editor/1692469#16924690Answer by Mario Ortegón for Drawing into an Eclipse editorMario Ortegón2009-11-07T08:53:09Z2009-11-07T08:53:09Z<p>The problem that you have is that you are getting the Shell, not the actual component for the editor. The Shell is the whole window where Eclipse is being shown.</p>
<p>I think the only solution is to create your own Editor implementation, and then in the createPartControl() method you can create a text area and then add the paint listener to it.</p>
<p>You can get started with:</p>
<p><a href="http://www.realsolve.co.uk/site/tech/jface-text.php" rel="nofollow">http://www.realsolve.co.uk/site/tech/jface-text.php</a></p>
<p>And then, looking at the source code of AbstractTextEditor, you can find the "real" SWT component that you want to draw to. You would need to override the method that creates the UI components, copy the original code and add your custom painting.</p>
http://stackoverflow.com/questions/1596332/how-to-use-profiler-of-netbeans/1596341#15963411Answer by Mario Ortegón for How to use profiler of Netbeans?Mario Ortegón2009-10-20T18:05:04Z2009-10-20T18:05:04Z<p>There are several resources on the web that can give you a hand</p>
<p><a href="http://www.javapassion.com/handsonlabs/nbprofilermemory/" rel="nofollow">http://www.javapassion.com/handsonlabs/nbprofilermemory/</a></p>
<p><a href="http://www.netbeans.org/kb/articles/nb-profiler-uncoveringleaks%5Fpt1.html" rel="nofollow">http://www.netbeans.org/kb/articles/nb-profiler-uncoveringleaks%5Fpt1.html</a></p>
<p><a href="http://kirk.blog-city.com/more%5Fon%5Fmemory%5Fleaks.htm" rel="nofollow">http://kirk.blog-city.com/more%5Fon%5Fmemory%5Fleaks.htm</a></p>
<p>In a nutshell, you monitor the "surviving generators", objects that are kept in the memory by your application.</p>
<p>When you see that this metric gets out of hand, you can switch to the Memory Live profiling mode, sort the classes by surviving generators and then with the right click mouse button select the "Show Allocation Stack Traces" option</p>
http://stackoverflow.com/questions/1593960/finding-a-needed-dll-after-a-jboss-hot-redeploy/1594269#15942690Answer by Mario Ortegón for Finding a needed dll after a JBoss (hot) redeploy?Mario Ortegón2009-10-20T12:31:05Z2009-10-20T12:31:05Z<p>It might not be so easy. Normally a DLL is tied to a specific classloader. When you redeploy, that means that the original classloader used for your application is destroyed. Unfortunately the Java Virtual Machine does not allow a second classloader to reload a DLL again.</p>
<p>You must have something static, that will never be unloaded by the Virtual Machine. Maybe having a second application that loads the DLL would be a solution, as redeploying the first application wouldn't then affect the DLL. I guess it could also be possible to create a Jar file that loads the DLL and add it to the classpath of JBoss itself, instead of adding it to your application. Normally such servers have a "shared" directory where such jar files can be added that will be shared by all applications.</p>
<p>The following bug from SUN sheds some light in this issue, which is way more general than just loading servlets:</p>
<p><a href="http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=4225434" rel="nofollow">http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=4225434</a></p>
http://stackoverflow.com/questions/1558852/learning-resources-and-tutorials-for-using-the-java-batik-library0Learning resources and tutorials for using the Java Batik LibraryMario Ortegón2009-10-13T08:17:10Z2009-10-13T13:07:29Z
<p>I am using the Batki library, which is more than ok to display SVG graphics in Java. For the basic use case of displaying and rendering an SVG document is quite simple to use. However, I want to do some other advanced graphic manipulation and I am struggling as I don't find any good resource that will allow me to perform the following types of task:</p>
<ul>
<li>Detecting the component under the mouse</li>
<li>Getting a component by id and changing the color used to render</li>
<li>Manipulate components</li>
<li>Adding new components</li>
<li>Detecting mouse clicks on components</li>
</ul>
<p>Is there any good resource or tips to use this library that you know about?</p>
http://stackoverflow.com/questions/1465904/finding-objects-under-mouse-in-a-jsvgcanvas-from-batik1Finding objects under mouse in a JSVGCanvas from BatikMario Ortegón2009-09-23T13:10:30Z2009-10-05T06:59:39Z
<p>I have a JSVGCanvas object from the Batik library from java. In my application, I am rendering several objects in a schematic. I require to know what component is below the mouse so I can render an appropiate tooltip and description that I am rendering from an external source.</p>
<p>My question is, how can I determine what objects are below the cursor at any given time?</p>
http://stackoverflow.com/questions/1517490/java-how-do-you-access-a-sub-object-of-an-object-with-no-getxxx-method-to-that/1517499#15174992Answer by Mario Ortegón for Java: How do you access a sub-object of an object with no "getXXX" method to that sub-objectMario Ortegón2009-10-04T22:03:26Z2009-10-04T22:03:26Z<p>Q1: The F means "final", so, the contents of the field can not be normally modified by direct access with the code. The yellow diamond means that it is a protected field. The red square means that it is a private field. If it was a green circle it would mean that it is public.</p>
<p>Some info on eclipse debugging, which much more than just the legends:</p>
<p><a href="http://www.ibm.com/developerworks/library/os-ecbug/" rel="nofollow">http://www.ibm.com/developerworks/library/os-ecbug/</a></p>
<p>Q2: You can use reflection to access any field on a class and invoke any method (if the security settings allow you). Reflection is a technique that allows you to "introspect" any class and access the members by name.</p>
<p>There is several tutorials on the web on how to use reflection:</p>
<p><a href="http://java.sun.com/docs/books/tutorial/reflect/" rel="nofollow">http://java.sun.com/docs/books/tutorial/reflect/</a></p>
<p><a href="http://java.sun.com/developer/technicalArticles/ALT/Reflection/" rel="nofollow">http://java.sun.com/developer/technicalArticles/ALT/Reflection/</a></p>
http://stackoverflow.com/questions/1477301/how-to-remove-subversive-action-in-synchronize-view/1486110#14861100Answer by Mario Ortegón for How to remove subversive action in Synchronize view ?Mario Ortegón2009-09-28T09:13:03Z2009-10-03T23:26:38Z<p>Two ways: Either alter the plugin.xml files inside the plugins from subversion to remove the contributions (which means that you have to keep your own version of the plugins), or you can remove specific contributions from the platform.</p>
<p>The removal normally takes place in the class that extends the IApplication interface, before you launch the actual Platform.</p>
<p>This is basically a hack, but it will allow you to do what you want without touching the subversion plugins. I don't know the names of the contributions (You would have to look them up in the source code from the plugins) but the code looks like:</p>
<pre><code>IExtensionRegistry extensionRegistry = InternalPlatform.getDefault().getRegistry();
List uiExtensionsToRemove = Arrays.toList(new String[] {"org.eclipse.ui.views.ProgressView" }); // Removing the progress view in this example
String[] tmpNamespaces = extensionRegistry.getNamespaces();
for (int i = 0; i < tmpNamespaces.length; i++) {
String tmpNamespace = tmpNamespaces[i];
try {
IExtension[] tmpExtensions = extensionRegistry.getExtensions(tmpNamespace);
for (int j = 0; j < tmpExtensions.length; j++) {
IExtension tmpExtension = tmpExtensions[j];
ExtensionHandle tmpEHandle = (ExtensionHandle)tmpExtension;
String tmpEPUID = tmpEHandle.getExtensionPointUniqueIdentifier();
if ("org.eclipse.search.searchPages".equals(tmpEPUID) || "org.eclipse.ui.preferencePages".equals(tmpEPUID) || "org.eclipse.ui.popupMenus".equals(tmpEPUID) || "org.eclipse.ui.actionSets".equals(tmpEPUID)
|| "org.eclipse.ui.views".equals(tmpEPUID) || "org.eclipse.ui.perspectives".equals(tmpEPUID)) {
// only remove part of ui extensions
if (tmpEHandle.getNamespace().startsWith("org.eclipse.ui")) {
String idOfFirstExtension = tmpEHandle.getConfigurationElements()[0].getAttribute("id");
if (!uiExtensionsToRemove.contains(idOfFirstExtension)) {
continue;
}
}
removeExtension(tmpEHandle);
}
} catch (InvalidRegistryObjectException iroe) {
}
//System.out.println("Namespace: " + tmpNamespace);
}
private void removeExtension(ExtensionHandle extensionHandle) throws IllegalArgumentException, IllegalAccessException, InvocationTargetException, SecurityException, NoSuchMethodException {
if (removeExtensionMethod == null) {
removeExtensionMethod = extensionRegistry.getClass().getDeclaredMethod("removeExtension", new Class[] { int.class });
removeExtensionMethod.setAccessible(true);
}
// well, this is some magic:
int tmpExtId = extensionHandle.hashCode();
removeExtensionMethod.invoke(extensionRegistry, new Object[] { new Integer(tmpExtId) });
}
</code></pre>
http://stackoverflow.com/questions/1507970/how-to-avoid-flickering-effect-while-jumping-from-one-jdialog-to-another-jdialog/1508379#15083791Answer by Mario Ortegón for How to avoid flickering effect while jumping from one jdialog to another jdialogMario Ortegón2009-10-02T08:45:36Z2009-10-03T23:24:38Z<p>If one dialog opens another, it might make more sense to use something like a Wizard instead. Then you avoid flickering altogether as you would change the contents on the component of the one and only dialog that you show on the screen.</p>
<p>The downside is that, of course, it will be a little bit harder to implement, but not much.</p>
<p>The following link contains the information about creating a wizard:</p>
<p><a href="http://java.sun.com/developer/technicalArticles/GUI/swing/wizard/" rel="nofollow">http://java.sun.com/developer/technicalArticles/GUI/swing/wizard/</a></p>
http://stackoverflow.com/questions/515993/what-is-the-correct-way-to-add-a-shutdown-hook-for-an-eclipse-rcp-application1What is the correct way to add a Shutdown Hook for an Eclipse RCP application?Mario Ortegón2009-02-05T13:58:49Z2009-09-17T06:54:02Z
<p>I have an RCP application that uses a connection to a in-memory database. There is one circumstance that, when shutting down windows, the application is killed without giving it a chance to close the connection to the database.</p>
<p>I researched a little and it seems that adding a Shutdown hook is the best way to detect this event and do cleanup in a Java application. However, what is the correct way to do process this if you have an RCP application, possibly with multiple editors open?</p>
http://stackoverflow.com/questions/1408584/how-do-you-generate-release-notes/1408624#14086241Answer by Mario Ortegón for How do you generate release notes?Mario Ortegón2009-09-11T01:45:44Z2009-09-11T01:45:44Z<p>In my company we use bugzilla. We use the milestone to tag a bug with a specific release number. Then we generate an xml report for all the bugs with a specific milestone and we use a small script to generate the release notes out of it.</p>
<p>This is something that can be easily generalized to any bug tracking software, in general.</p>
<p>I guess it could also be tied to comments in the commit messages on your version control system. A query could be made to list all comments on the commits on verson control and then filter for all of the comments with a specific tag.</p>
http://stackoverflow.com/questions/1347684/what-is-the-preferred-way-to-load-a-dll-on-an-eclipse-rcp-plugin3What is the preferred way to load a DLL on an Eclipse RCP plugin?Mario Ortegón2009-08-28T15:20:26Z2009-09-09T09:19:17Z
<p>I have an Eclipse RCP plugin that requires a DLL.</p>
<p>What is the recommended best practice to add the DLL reference to the MANIFEST? Where should the DLL be located, what is the recommended directory name?</p>
<p>I have read conflicting practices. Some ask you to create a folder with the architecture and processor type, some ask to set some platform filters on the Manifest....</p>
http://stackoverflow.com/questions/561245/virtual-memory-usage-from-java-under-linux-too-much-memory-used3Virtual Memory Usage from Java under Linux, too much memory usedMario Ortegón2009-02-18T14:24:48Z2009-09-02T18:43:03Z
<p>I have a problem with a java application running under linux.</p>
<p>When I launch the application, using the default maximum heap size (64mb), I see using the tops application that 240 MB of virtual Memory are allocated to the application. This creates some issues with some other software on the computer, which is relatively resource-limited.</p>
<p>The reserved virtual memory will not be used anyway, as far as I understand, because once we reach the heap limit an OutOfMemoryError is thrown. I ran the same application under windows and I see that the Virtual Memory size and the Heap size are similar.</p>
<p>Is there anyway that I can configure the Virtual Memory in use for a Java process under Linux?</p>
<p><strong>EDIT: The problem is not the Heap. The problem is that if I set a Heap of 128M, for example, still linux allocates 210 MB of Virtual Memory, which is not needed, ever.</strong></p>
<p><strong>EDIT 2: Using ulimit -v allows limiting the amount of virtual memory. If the size set is below 204 MB, then the application won't run even though it doesn't need 204MB, only 64MB. So I want to understand why java requires so much virtual memory. Can this be changed?</strong></p>
<p><strong>EDIT 3: There are several other applications running in the system, which is embedded. And the system does have a virtual memory limit. (from comments, important detail)</strong></p>
http://stackoverflow.com/questions/1368915/exclude-individual-junit-test-methods-without-modifying-the-test-class/1369053#13690531Answer by Mario Ortegón for Exclude individual JUnit Test methods without modifying the Test class?Mario Ortegón2009-09-02T17:21:09Z2009-09-02T17:21:09Z<p>A possibility I can think of to achieve what you want with the stated constraints is to use bytecode modification. You could keep a list of classes and methods to ignore in a separate file, and patch the bytecode of the test classes as you load them to remove this methods altogether.</p>
<p>If I am not mistaken, JUnit uses reflection to find the test methods to execute. A method rename operation would then allow you to remove these methods before JUnit finds them. Or the method can be modified to return immediately, without performing any operation.</p>
<p>A library like <a href="http://jakarta.apache.org/bcel/" rel="nofollow">BCEL</a> can be used to modify the classes when loaded.</p>
http://stackoverflow.com/questions/1286738/why-an-eclipse-rcp-product-build-can-not-find-classes-in-org-eclipse-ui-during-he2Why an Eclipse RCP product build can not find classes in org.eclipse.ui during headless build?Mario Ortegón2009-08-17T08:18:41Z2009-08-17T21:49:44Z
<p>I have a product definition that includes one feature I wrote and the org.eclipse.feature. When I build this product from eclipse, it completes successfully. However, when I try to use the Headless build, the compilation process fails as it complains that it cannot find classes included in org.eclipse.ui. One of these classes, for example, is PlatformUI. The build process thus fails.</p>
<p>I've checked and the org.eclipse.ui is included in the org.eclipse.ui plugin. I've also tried to include this plugin explicitly in my custom feature, but to no avail.</p>
<p>I've also tried removing one of these plugins with problems, but the next that used org.eclipse.ui failed. So it seems to be definitively a classpath issue of some sowrt.</p>
<p>I've tried this headless build using version 3.3.2 of Eclipse.</p>
http://stackoverflow.com/questions/1275042/product-build-based-on-features-on-eclipse-rcp0Product build based on features on Eclipse RCPMario Ortegón2009-08-13T22:43:24Z2009-08-14T23:49:40Z
<p>I have the following problem. I have a product build that includes several features. I have a main, product feature and I want to add some of the embedded features from eclipse, basically the features</p>
<p>org.eclipse.rcp
org.eclipse.jdt
org.eclipse.platform</p>
<p>There is two places where I can add these features: I can add them to the product definition itself, or I can add them as included features in my product defining feature.</p>
<p>My question is, what is the best way? I have problems when using the included features option, so I wonder if the other option makes more sense.</p>
http://stackoverflow.com/questions/1276379/building-a-plugin-with-two-source-folders-fails0Building a plugin with two source folders failsMario Ortegón2009-08-14T06:48:44Z2009-08-14T07:15:01Z
<p>I have an Eclipse Plug-in that contains two source folders:</p>
<ul>
<li>src/</li>
<li>src-gen/</li>
</ul>
<p>The reason is that, as the name implies, the second folder is filled with the results of code generation.</p>
<p>However, when I try an Eclipse PDE build, or even a single export of the plugin, the code in src/ that refers to generated classes will not compile. It seems the classes in src-gen are not used during the build, even though they are used in the IDE.</p>
<p>What could be the reason for this issue?</p>
http://stackoverflow.com/questions/1276379/building-a-plugin-with-two-source-folders-fails/1276460#12764601Answer by Mario Ortegón for Building a plugin with two source folders failsMario Ortegón2009-08-14T07:15:01Z2009-08-14T07:15:01Z<p>I found the reason for the problem.</p>
<p>In the build.properties file that must be present on every plugin, there is a section called source and in this case it must be as follows:</p>
<pre><code>source.. = src/,\
src-gen/
</code></pre>
<p>The reason for the discrepancy is that the java build path was taking both of these folders in consideration, but not the build system.</p>
<p>Normally Eclipse keeps both of these files synchronized, but it is not always the case.</p>
<p>After making this change I am able to build the plugin.</p>
http://stackoverflow.com/questions/1156330/how-do-you-make-eclipse-use-an-existing-svn-working-copy/1265712#12657120Answer by Mario Ortegón for How do you make eclipse use an existing svn working copy?Mario Ortegón2009-08-12T11:54:46Z2009-08-12T11:54:46Z<p>It will definitively not work if you use a different version of svn to checkout, that the one that is supported by Eclipse. I had this problem as I used svn 1.6 to checkout but I had an older eclipse version that had only 1.5. Subclipse has its own build-in svn client (Actually, in two flavors if I am not mistaken).</p>
<p>Check that the subclipse version matches the svn client that you used to checkout. You can check the plugin version number for subclipse (Help -> About -> Click on subversion logo) and match it against svn --version</p>
http://stackoverflow.com/questions/1247527/is-charging-for-open-source-software-a-viable-business-model/1247568#12475680Answer by Mario Ortegón for Is charging for open-source software a viable business model?Mario Ortegón2009-08-08T00:17:44Z2009-08-08T00:17:44Z<p>It is not as uncommon as it might seem at first glance.</p>
<p>For example, Monarch sells a source code option with their application. It is also something relatively common when a big company buys software from a smaller company, as it is a protection against the possibility that the smaller firm goes out of business and there is no one to maintain the software anymore.</p>
<p>As far as I know, FogCreek software also gives you the source code when you buy their products.</p>
http://stackoverflow.com/questions/1226435/good-solutions-to-distribute-a-pre-configured-eclipse7Good solutions to distribute a pre-configured Eclipse?Mario Ortegón2009-08-04T09:12:18Z2009-08-06T08:12:53Z
<p>I am working with a medium team of developers. So far, everyone has its own version of Eclipse, configured with a slightly different set of plugins and with different configuration options. It is normally a pain to set up a new computer as we have to hunt for a bunch of different plugins and configure everything by hand.</p>
<p>Is there a way to create a software distribution that contains:</p>
<ul>
<li>A preconfigured set of plugins
<ul>
<li>Subclipse</li>
<li>Checkstyle (Configured)</li>
<li>Formatting styles and suggestions</li>
<li>..etc...</li>
</ul></li>
<li>Custom perspectives</li>
<li>Pre-configured repositories for source code</li>
<li>Pre-configured projects</li>
<li>A preconfigured workset with locations to retrieve the source code from</li>
</ul>
<p>In an ideal situation, a person just unzips a file, clicks on the Eclipse icon and voila!, everything is just there.</p>
http://stackoverflow.com/questions/1226435/good-solutions-to-distribute-a-pre-configured-eclipse/1226490#12264903Answer by Mario Ortegón for Good solutions to distribute a pre-configured Eclipse?Mario Ortegón2009-08-04T09:26:30Z2009-08-04T09:26:30Z<p>I've been checking out the Yoxos-on-demand tool:</p>
<p><a href="http://ondemand.yoxos.com/" rel="nofollow">http://ondemand.yoxos.com/</a></p>
<p>It looks extremely nice as it contains some additional Yoxos plugins that allow you to pre-configure many options on the tool, with an option that it's called provisioning.</p>
<p>It is possible to pre-configure many options on the team, checkstyle, and properties settings.</p>
<p>I found also an option that, from an existing Yoxos setup, it is possible to export all the settings and import them into another Yoxos installation.</p>
http://stackoverflow.com/questions/1223528/ideas-for-software-engineering-thesis-project/1223658#12236582Answer by Mario Ortegón for Ideas for Software Engineering Thesis ProjectMario Ortegón2009-08-03T17:46:16Z2009-08-03T17:46:16Z<p>Similar to:
<a href="http://stackoverflow.com/questions/1205846/what-topic-or-idea-would-you-suggest-for-an-ms-computer-science-thesis">http://stackoverflow.com/questions/1205846/what-topic-or-idea-would-you-suggest-for-an-ms-computer-science-thesis</a></p>
<p>and:</p>
<p><a href="http://stackoverflow.com/questions/301665/a-computer-science-student-needs-help-selecting-topic-for-thesis-j2ee">http://stackoverflow.com/questions/301665/a-computer-science-student-needs-help-selecting-topic-for-thesis-j2ee</a></p>
<p>and:</p>
<p><a href="http://stackoverflow.com/questions/731737/computer-science-diploma-thesis">http://stackoverflow.com/questions/731737/computer-science-diploma-thesis</a></p>
http://stackoverflow.com/questions/1223511/what-type-of-barcode-is-this/1223542#12235420Answer by Mario Ortegón for What type of BarCode is this?Mario Ortegón2009-08-03T17:25:41Z2009-08-03T17:25:41Z<p>If you are using Java:</p>
<p><a href="http://code.google.com/p/zxing/" rel="nofollow">http://code.google.com/p/zxing/</a></p>
<p>Open Source, supports multiple types of barcodes</p>
<p>A list of software can be found here:</p>
<p><a href="http://www.dmoz.org/Computers/Software/Bar_Code/Decoding/" rel="nofollow">http://www.dmoz.org/Computers/Software/Bar_Code/Decoding/</a></p>
http://stackoverflow.com/questions/1211468/headless-build-of-eclipse-features-pde-tools-or-buckminster/1221123#12211231Answer by Mario Ortegón for Headless build of eclipse features - PDE Tools or Buckminster?Mario Ortegón2009-08-03T07:55:53Z2009-08-03T07:55:53Z<p>The only problem I've had with PDE build is the map file for checking out. I wrote my own ant task to do the checkout for me using SVN, based on conventions on where the plugins are located, instead of having to explicitly state in the map file all the file paths. Worked wonders and now I can just add plugins to my svn repository and refer to them in the feature.xml and it just works.</p>
http://stackoverflow.com/questions/1216577/common-programming-mistakes-for-java-developers-to-avoid/1217725#12177252Answer by Mario Ortegón for Common programming mistakes for Java developers to avoid?Mario Ortegón2009-08-01T23:07:03Z2009-08-01T23:07:03Z<p>Not knowing about <strong>Soft</strong> and <strong>Weak</strong> references. I don't know how many memory leaks would have been avoided in code I've seen by properly using these types of references.</p>
<p>Some resources:</p>
<p><a href="http://www.ibm.com/developerworks/java/library/j-jtp11225/index.html" rel="nofollow">http://www.ibm.com/developerworks/java/library/j-jtp11225/index.html</a></p>
<p><a href="http://www.ibm.com/developerworks/java/library/j-jtp01246.html" rel="nofollow">http://www.ibm.com/developerworks/java/library/j-jtp01246.html</a></p>
http://stackoverflow.com/questions/1816776/java-short-circuit-evaluationComment by Mario Ortegón on Java short circuit evaluationMario Ortegón2009-11-30T14:52:13Z2009-11-30T14:52:13ZSometimes it takes forever to solve such simple bugs, because you don't expect to have made a mistake like that. I once spend ours debugging a misplaced semicolon....http://stackoverflow.com/questions/1347684/what-is-the-preferred-way-to-load-a-dll-on-an-eclipse-rcp-plugin/1392013#1392013Comment by Mario Ortegón on What is the preferred way to load a DLL on an Eclipse RCP plugin?Mario Ortegón2009-11-26T19:18:14Z2009-11-26T19:18:14ZThis is what I am using, but using OSGI filters as suggested by stevenhttp://stackoverflow.com/questions/1754849/group-and-counting-a-string-in-ant/1755074#1755074Comment by Mario Ortegón on Group and counting a String in AntMario Ortegón2009-11-18T14:22:14Z2009-11-18T14:22:14ZGetting a dump with the MANIFEST.MF location and the string is not difficult. I think I will go with the hard-coded ant task for the groupinghttp://stackoverflow.com/questions/1120388/good-ways-of-disciplining-yourself-when-freelancing-at-home/1120425#1120425Comment by Mario Ortegón on Good ways of disciplining yourself when freelancing at home?Mario Ortegón2009-11-11T13:48:30Z2009-11-11T13:48:30ZGermany... better work/life balance that the US ;)http://stackoverflow.com/questions/1571265/why-is-the-java-date-api-java-util-date-calendar-such-a-messComment by Mario Ortegón on Why is the Java date API (java.util.Date, .Calendar) such a mess?Mario Ortegón2009-10-15T10:21:15Z2009-10-15T10:21:15Z@S.Lott: I don't agree. We don't live in isolation. We aren't born as great software architects that know the right solution with no forethought. We have to learn, and learning from past mistakes is useful.http://stackoverflow.com/questions/1465904/finding-objects-under-mouse-in-a-jsvgcanvas-from-batik/1518574#1518574Comment by Mario Ortegón on Finding objects under mouse in a JSVGCanvas from BatikMario Ortegón2009-10-14T23:22:36Z2009-10-14T23:22:36ZGood answer thanks! I ended up finding somewhere that you can also add a "title" element inside, but your solution is better!http://stackoverflow.com/questions/1558852/learning-resources-and-tutorials-for-using-the-java-batik-library/1559298#1559298Comment by Mario Ortegón on Learning resources and tutorials for using the Java Batik LibraryMario Ortegón2009-10-13T23:06:45Z2009-10-13T23:06:45ZNot really, I am writing a java application. svgweb is a renderer for a web browser.http://stackoverflow.com/questions/1558852/learning-resources-and-tutorials-for-using-the-java-batik-library/1558903#1558903Comment by Mario Ortegón on Learning resources and tutorials for using the Java Batik LibraryMario Ortegón2009-10-13T23:06:14Z2009-10-13T23:06:14ZWell, at least reading through the spec will help me sleep better at night :Dhttp://stackoverflow.com/questions/1517490/java-how-do-you-access-a-sub-object-of-an-object-with-no-getxxx-method-to-that/1517499#1517499Comment by Mario Ortegón on Java: How do you access a sub-object of an object with no "getXXX" method to that sub-objectMario Ortegón2009-10-04T22:29:02Z2009-10-04T22:29:02ZI was actually looking for it but couldn't find it...http://stackoverflow.com/questions/1517490/java-how-do-you-access-a-sub-object-of-an-object-with-no-getxxx-method-to-that/1517499#1517499Comment by Mario Ortegón on Java: How do you access a sub-object of an object with no "getXXX" method to that sub-objectMario Ortegón2009-10-04T22:07:02Z2009-10-04T22:07:02ZAdded a note to it on the response, thanks!http://stackoverflow.com/questions/1464026/less-known-but-useful-features-in-eclipse/1464153#1464153Comment by Mario Ortegón on Less known but useful features in EclipseMario Ortegón2009-09-23T07:36:47Z2009-09-23T07:36:47ZThis function is soo cool!http://stackoverflow.com/questions/1223528/ideas-for-software-engineering-thesis-project/1223658#1223658Comment by Mario Ortegón on Ideas for Software Engineering Thesis ProjectMario Ortegón2009-09-21T10:00:04Z2009-09-21T10:00:04ZIt is encouraged to add answers to link to similar questionshttp://stackoverflow.com/questions/1368915/exclude-individual-junit-test-methods-without-modifying-the-test-class/1369053#1369053Comment by Mario Ortegón on Exclude individual JUnit Test methods without modifying the Test class?Mario Ortegón2009-09-02T17:29:05Z2009-09-02T17:29:05ZIt would be still valid to modify the method to return immediately. But thanks, I was thinking about JUnit3 http://stackoverflow.com/questions/1286738/why-an-eclipse-rcp-product-build-can-not-find-classes-in-org-eclipse-ui-during-he/1290669#1290669Comment by Mario Ortegón on Why an Eclipse RCP product build can not find classes in org.eclipse.ui during headless build?Mario Ortegón2009-08-18T07:20:02Z2009-08-18T07:20:02ZI found the problem and it is related to what you mention. I had a bogus org.eclipse.ui.workbench plugin that was wreaking havoc with the build.http://stackoverflow.com/questions/1286738/why-an-eclipse-rcp-product-build-can-not-find-classes-in-org-eclipse-ui-during-he/1286960#1286960Comment by Mario Ortegón on Why an Eclipse RCP product build can not find classes in org.eclipse.ui during headless build?Mario Ortegón2009-08-17T10:49:25Z2009-08-17T10:49:25ZHi! I've checked this file. I actually had no entry. I've added the win32 entry but my problem is still the same.