TechArena
Tuesday, April 30, 2013
NB Platform custom conf
https://blogs.oracle.com/geertjan/entry/support_for_custom_configuration_files
In project.properties file, use :
app.conf=nbproject/my.conf
Wednesday, April 17, 2013
Swing: modify table cell on tab
Override this method in JTable (Source:
https://forums.oracle.com/forums/thread.jspa?threadID=1353305
)
@Override
public void changeSelection(
int row, int column, boolean toggle, boolean extend) {
super.changeSelection(row, column, toggle, extend);
// Place cell in edit mode when it 'gains focus'
if (editCellAt(row, column)) {
Component editor = getEditorComponent();
editor.requestFocusInWindow();
((JFormattedTextField)editor).selectAll();
}
}
Ref
http://stackoverflow.com/questions/14206083/jtable-edit-on-keypress
http://stackoverflow.com/questions/9091208/jtable-enter-key/9095442#9095442
http://www.java2s.com/Tutorial/Java/0260__Swing-Event/MaketheENTERkeyactliketheTABkey.htm
http://www.java2s.com/Tutorial/Java/0260__Swing-Event/SettingFocusTraversalKeysinaComponent.htm
http://www.java2s.com/Tutorial/Java/0260__Swing-Event/KeyListenerandKeyEvent.htm
Thursday, April 11, 2013
Text Editor
http://www.texniccenter.org/
Simulator
http://www.simutrans.com/en/
Open source Microsoft Project
http://www.projectlibre.org/
Presentation Online - impress.js and reveal.js
https://github.com/bartaz/impress.js
https://github.com/hakimel/reveal.js
Thursday, April 4, 2013
Java Rest
http://www.vogella.com/articles/REST/article.html#restjersey
http://jersey.java.net/
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)