User Peter Lang - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T04:08:02Zhttp://stackoverflow.com/feeds/user/17343http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1789656/editable-jcombobox/1789853#17898530Answer by Peter Lang for Editable JComboBoxPeter Lang2009-11-24T12:43:58Z2009-11-24T13:03:36Z<p>Try the following. When the user changes a value AND presses [ENTER], the old value is removed and the new one is added.</p>
<p>If you need to replace the value at the same position, you will have to provide your own model that supports adding values at a certain position.</p>
<pre><code>final DefaultComboBoxModel model = new DefaultComboBoxModel(new String[] {"Red", "Green", "Blue"});
comboBox = new JComboBox(model);
comboBox.setEditable(true);
comboBox.addActionListener(new ActionListener() {
private int selectedIndex = -1;
@Override
public void actionPerformed(ActionEvent e) {
int index = comboBox.getSelectedIndex();
if(index >= 0) {
selectedIndex = index;
}
else if("comboBoxEdited".equals(e.getActionCommand())) {
Object newValue = model.getSelectedItem();
model.removeElementAt(selectedIndex);
model.addElement(newValue);
comboBox.setSelectedItem(newValue);
selectedIndex = model.getIndexOf(newValue);
}
}
});
comboBox.setSelectedIndex(0);
</code></pre>
http://stackoverflow.com/questions/1788011/transpose-select-results-with-oracle/1788329#17883290Answer by Peter Lang for Transpose select results with Oracle Peter Lang2009-11-24T06:58:21Z2009-11-24T07:03:57Z<p>If you want to generate the query for each call or use a hardcoded max-column-count, then you can do something like that:</p>
<pre><code>WITH tab AS
(
SELECT table_name, column_name FROM user_tab_cols WHERE column_id <= 4
) -- user_tab_cols used to provide test data, use your table instead
SELECT MAX(c1) c1,
MAX(c2) c2,
MAX(c3) c3,
MAX(c4) c4
FROM (SELECT table_name,
DECODE( column_id, 1, column_name ) c1,
DECODE( column_id, 2, column_name ) c2,
DECODE( column_id, 3, column_name ) c3,
DECODE( column_id, 4, column_name ) c4
FROM ( SELECT table_name,
column_name,
ROW_NUMBER() OVER ( PARTITION BY table_name ORDER BY column_name ) column_id
FROM tab
)
)
GROUP BY table_name
ORDER BY table_name
</code></pre>
<p><hr></p>
<p>If it is sufficient to get it in that form</p>
<pre><code>TABLENAME1|COL1,COL2
TABLENAME2|COL1,COL2,COL3
</code></pre>
<p>have a look at Tom Kyte's <a href="http://www.sqlsnippets.com/en/topic-11591.html" rel="nofollow">stragg</a>.</p>
http://stackoverflow.com/questions/1660679/relationship-between-gef-and-gmf/1686937#16869371Answer by Peter Lang for Relationship between GEF and GMF?Peter Lang2009-11-06T11:12:46Z2009-11-06T11:12:46Z<p>I'm afraid you did not get it right, at least it's difficult to understand the diagram. </p>
<p>I guess it should look something like that:</p>
<pre><code> GMF
/ \
EMF GEF
\
Draw2D
</code></pre>
<p>Generated GMF-Source makes us of EMF to handle the model's data, and GEF to display/edit it.</p>
<p>Have a look at
<a href="http://www.eclipse.org/articles/Article-Introducing-GMF/article.html" rel="nofollow">Introducing the GMF Runtime</a> (Components)</p>
http://stackoverflow.com/questions/685763/anyone-have-experience-with-eclipse-gmf2Anyone have experience with Eclipse GMF?Peter Lang2009-03-26T13:23:24Z2009-05-11T14:22:19Z
<p>I've just started to play around with <a href="http://www.eclipse.org/modeling/gmf/" rel="nofollow">Eclipse GMF</a>.</p>
<ul>
<li>Has anyone used the framework?</li>
<li>Any good or bad experiences you made using it?</li>
<li>Any alternatives for graphical modeling you could suggest?</li>
<li><strong>EDIT:</strong> What good examples are available?</li>
</ul>
http://stackoverflow.com/questions/671555/how-to-convert-xsd-to-ecore-emf1How to convert xsd to ecore (EMF)Peter Lang2009-03-22T20:19:11Z2009-04-15T05:14:45Z
<p>What is the best way to convert .xsd-files into .ecore-files?
Is there an eclipse plugin for that?</p>
http://stackoverflow.com/questions/658259/getting-only-one-row-in-outer-join-using-oracle0Getting only one row in outer join using oraclePeter Lang2009-03-18T13:31:42Z2009-04-10T12:19:56Z
<p>I've got a table and want to outer-join another table, getting only the first row (the one with lowest nr) of the second table using Oracle 10g.</p>
<p><strong>Edit:</strong> nr is unique within an id</p>
<pre><code>Table x Table y
id id nr code
1 1 1 B
2 1 2 A
3 2 2 A
Expected result:
id nr code
1 1 B
2 2 A
3 NULL NULL
</code></pre>
<p>Example with test data (does not do the limitation to single row but should allow faster testing):</p>
<pre><code>WITH
x AS( SELECT 1 id FROM dual UNION SELECT 2 FROM dual UNION SELECT 3 FROM dual ),
y AS( SELECT 1 id, 1 nr, 'B' code FROM dual
UNION SELECT 1, 2, 'A' FROM dual
UNION SELECT 2, 2, 'A' FROM dual
) -- end of test data
SELECT x.id, y.nr, y.code
FROM x
LEFT OUTER JOIN y ON ( y.id = x.id )
</code></pre>
http://stackoverflow.com/questions/671555/how-to-convert-xsd-to-ecore-emf/674246#6742461Answer by Peter Lang for How to convert xsd to ecore (EMF)Peter Lang2009-03-23T17:01:26Z2009-03-23T17:01:26Z<p>That's what worked for me:</p>
<ul>
<li>New -> Project...</li>
<li>Eclipse Modeling Framework -> EMF Project</li>
<li><strong>Model Importers:</strong> <em>XML Schema</em></li>
<li><strong>Model URIs</strong>: <em>[Select xsd-File]</em></li>
</ul>
<p>To revalidate the .ecore-File when xsd has changed:</p>
<ul>
<li>Right-Click on <em>.genmodel</em>-File</li>
<li><strong>Reload...</strong></li>
</ul>
http://stackoverflow.com/questions/658691/how-to-select-values-from-two-tables-that-are-not-contained-in-the-map-table/659010#6590100Answer by Peter Lang for How to select values from two tables that are not contained in the map table?Peter Lang2009-03-18T16:25:35Z2009-03-18T16:25:35Z<p>I tried this in oracle (hope it works for you too)</p>
<pre><code>UPDATE customers c
SET unownedProduct =
( SELECT MIN( productid )
FROM products
WHERE productid NOT IN (
SELECT unownedProduct
FROM customers
WHERE unownedProduct IS NOT NULL )
AND productid NOT IN (
SELECT productid
FROM customerProducts cp
WHERE cp.customerId = c.customerid )
)
WHERE customerId = 1
</code></pre>
http://stackoverflow.com/questions/658691/how-to-select-values-from-two-tables-that-are-not-contained-in-the-map-table/658745#6587450Answer by Peter Lang for How to select values from two tables that are not contained in the map table?Peter Lang2009-03-18T15:23:00Z2009-03-18T15:23:00Z<p>If you update only one customer at once, you might need to remember which products have been assigned automatically (in CustomerProducts) or have a counter how often a product has been assigned automatically (in Products)</p>
http://stackoverflow.com/questions/639547/is-there-a-firefox-clear-cache-keyboard-shortcut/639575#6395750Answer by Peter Lang for Is there a firefox clear cache keyboard shortcut?Peter Lang2009-03-12T17:07:10Z2009-03-12T17:07:10Z<p>I guess</p>
<pre><code>Ctrl + Shift + Delete
</code></pre>
<p>is not what you want?</p>
http://stackoverflow.com/questions/630418/managing-customers-in-database/630456#6304561Answer by Peter Lang for Managing customers in databasePeter Lang2009-03-10T14:26:39Z2009-03-10T14:26:39Z<p>If possible, let the user log in.</p>
<p>This saves you the trouble with searching for a similar customer, and the users do not have to enter their address more than once.</p>
http://stackoverflow.com/questions/560820/sql-query-filtering/560890#5608903Answer by Peter Lang for SQL query filteringPeter Lang2009-02-18T12:41:29Z2009-02-18T12:47:58Z<p>I guess that there is a better and more performant way, but this one seems to work:</p>
<pre><code>SELECT *
FROM log
WHERE log_id IN
( SELECT MIN(log_id)
FROM log
WHERE
( SELECT COUNT(DISTINCT log_name)
FROM log log2
WHERE log2.fb_id = log.fb_id ) = 1
OR log.log_name <> ( SELECT log_name
FROM log log_3
WHERE log_3.log_id =
( SELECT MIN(log_id)
FROM log log4
WHERE log4.fb_id = log.fb_id ) )
GROUP BY fb_id )
</code></pre>
http://stackoverflow.com/questions/482041/how-to-select-first-item-in-jpopupmenu/488927#4889270Answer by Peter Lang for How to select first item in JPopupMenu?Peter Lang2009-01-28T19:10:37Z2009-01-29T17:16:55Z<p>This is weird.</p>
<p>I tried it with Windows, and with <em>Java 1.5.0_08</em> and even <strong><em>1.6.0_07</em></strong> the first Element is selected automatically, as you expected it to be.</p>
<p>So I tried it with <strong><em>1.6.0_11</em></strong>, and it does not work any more, the first element is not selected initially.
Selecting the element in the selectionModel does not seem to help.</p>
<p>One workaround (that I'm not at all proud of) is to move the mouse automatically after displaying the popup menu, using the coordinates of the <em>MouseEvent</em>. Maybe someone's got a better idea?</p>
<pre><code>import java.awt.AWTException;
import java.awt.Robot;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.JFrame;
import javax.swing.JMenuItem;
import javax.swing.JPopupMenu;
public class SelectedPopupMenu extends JFrame {
public SelectedPopupMenu() {
addMouseListener(new MouseAdapter() {
public void mouseClicked(final MouseEvent e) {
JPopupMenu popupMenu = new JPopupMenu();
popupMenu.add(new JMenuItem("Test-Item"));
popupMenu.add(new JMenuItem("Test-Item-2"));
// do not care to really hit the center of the popup
popupMenu.show(SelectedPopupMenu.this, e.getX() - 30, e.getY() - 10);
try {
// shake mouse, so that first element is selected even in Java 1.6.0_11
Robot robot = new Robot();
robot.mouseMove(e.getX() + 1, e.getY());
robot.mouseMove(e.getX(), e.getY());
} catch (AWTException ex) {
ex.printStackTrace();
}
}
});
}
public static void main(String[] args) {
JFrame frame = new SelectedPopupMenu();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(800, 600);
frame.setVisible(true);
}
}
</code></pre>
http://stackoverflow.com/questions/428256/how-can-i-best-lay-out-these-components-in-swing/473742#4737420Answer by Peter Lang for How can I best lay out these components in Swing?Peter Lang2009-01-23T17:17:35Z2009-01-23T17:17:35Z<p>I think, that of all standard layouts, GridBagLayout should be best for what you need.</p>
<p>You could try something like the following example, where I simplified the complex GridBagConstraints constructor to what I really need by using addToLayout.</p>
<p>If you can use an IDE though, this can really make things easier (Matisse in NetBeans for instance).</p>
<pre><code>import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
public class GridBagLayoutTest extends JPanel {
public GridBagLayoutTest() {
setLayout(new GridBagLayout());
addToLayout(new JLabel( "Label 0" ), 0, 0, 0d, 1);
addToLayout(new JTextField( "Field 0" ), 0, 1, 1d, 4);
addToLayout(new JLabel( "*" ), 0, 5, 0d, 1);
addToLayout(new JPanel() , 1, 0, 0d, 1);
addToLayout(new JLabel( "Label 1" ), 2, 0, 0d, 1);
addToLayout(new JTextField( "Field 1" ), 2, 1, 1d, 4);
addToLayout(new JLabel( "*" ), 2, 5, 0d, 1);
addToLayout(new JLabel( "Label 2" ), 3, 0, 0d, 1);
addToLayout(new JTextField( "Field 2" ), 3, 1, 1d, 1);
addToLayout(new JLabel( "*" ), 3, 2, 0d, 1);
addToLayout(new JLabel( "Label 3" ), 3, 3, 0d, 1);
addToLayout(new JTextField( "Field 3" ), 3, 4, 1d, 1);
addToLayout(new JLabel( "*" ), 3, 5, 0d, 1);
}
private void addToLayout(java.awt.Component comp, int y, int x, double weightx, int gridwidth) {
add(comp, new GridBagConstraints(x, y, gridwidth, 1, weightx, 0d,
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
new java.awt.Insets(2, 4, 2, 4), 0, 0 ) );
}
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new GridBagLayoutTest());
frame.setSize(800, 600);
frame.setVisible(true);
}
}
</code></pre>
http://stackoverflow.com/questions/423524/how-to-control-focus-in-jtable/423773#4237730Answer by Peter Lang for how to control focus in JTablePeter Lang2009-01-08T10:08:59Z2009-01-09T09:46:35Z<p>Please try this example.</p>
<p>It should let you navigate through the table by entering the values u, d, l, r for Up, Down, Left, Right.</p>
<p>Hope that this will give you an idea about how to do it.</p>
<pre><code>import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.JFrame;
import javax.swing.JTable;
import javax.swing.KeyStroke;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableModel;
public class Test extends JFrame {
private JTable table;
private TableModel tableModel;
public Test() {
tableModel = new DefaultTableModel(5, 5);
table = new JTable(tableModel);
table.setColumnSelectionAllowed(true);
getContentPane().add(table);
Action handleEnter = new AbstractAction() {
public void actionPerformed(ActionEvent e) {
table.getCellEditor().stopCellEditing(); // store user input
int row = table.getSelectedRow();
int col = table.getSelectedColumn();
String val = String.valueOf(table.getValueAt(row, col)).toLowerCase();
if (val.equals("u"))
--row;
else if (val.equals("d"))
++row;
else if (val.equals("l"))
--col;
else if (val.equals("r"))
++col;
if ( row >= 0 && row < tableModel.getRowCount()
&& col >= 0 && col < tableModel.getColumnCount()) {
table.changeSelection(row, col, false, false);
table.editCellAt(row, col);
}
}
};
// replace action for ENTER, since next row would be selected automatically
table.getInputMap().put(KeyStroke.getKeyStroke("ENTER"), "handleEnter");
table.getActionMap().put("handleEnter", handleEnter);
}
public static void main(String[] args) {
Test test = new Test();
test.setSize(800, 600);
test.setVisible(true);
}
}
</code></pre>
http://stackoverflow.com/questions/308793/oracle-dbmsscheduler-react-to-change-of-system-date1Oracle dbms_scheduler - react to change of system datePeter Lang2008-11-21T13:41:12Z2008-11-24T16:47:44Z
<p>I've got a <em>dbms_scheduler</em>-Job running in Oracle 10.2.0.</p>
<p>When I change the system date back to yesterday, the job will wait for one day to continue its work. The reason for this is that <em>next_run_date</em> does not change.</p>
<p>This does not happen regularly, but sometimes someone decides to change the system date without thinking or even knowing about oracle jobs running.</p>
<p>Any suggestions on how to keep my job running with the configured interval (without having it to change manually)?</p>
http://stackoverflow.com/questions/288402/what-does-standard-mean-in-the-datatype-column-of-describe/314725#3147252Answer by Peter Lang for What does "Standard" mean in the datatype column of describePeter Lang2008-11-24T16:43:25Z2008-11-24T16:43:25Z<p>The type is "<ADT_1>" which is defined in package <em>standard</em>.</p>
<p>According to the <a href="http://www.psoug.org/reference/standard.html" rel="nofollow">reference</a> these </p>
<blockquote>
<p>data types are generics, used
specially within package STANDARD and
some other Oracle packages. They are
protected against other use; sorry.
True generic types are not yet part of
the language.</p>
</blockquote>
http://stackoverflow.com/questions/101184/how-can-i-confirm-a-database-is-oracle-what-version-it-is-using-sql/101240#1012401Answer by Peter Lang for How can I confirm a database is Oracle & what version it is using SQL?Peter Lang2008-09-19T11:38:44Z2008-09-19T11:38:44Z<p>You can either use</p>
<pre><code>SELECT * FROM v$version;
</code></pre>
<p>or</p>
<pre><code>SET SERVEROUTPUT ON
EXEC dbms_output.put_line( dbms_db_version.version );
</code></pre>
<p>if you don't want to parse the output of v$version.</p>
http://stackoverflow.com/questions/1803170/need-some-help-with-a-sql-query/1803199#1803199Comment by Peter Lang on Need some help with a SQL QueryPeter Lang2009-11-26T11:44:46Z2009-11-26T11:44:46ZShouldn't you sort ASCending to get lowest PayrollFrom?http://stackoverflow.com/questions/1789656/editable-jcombobox/1789853#1789853Comment by Peter Lang on Editable JComboBoxPeter Lang2009-11-25T09:23:55Z2009-11-25T09:23:55ZNot sure when you want to delete the row...
If you want to delete it when the user clears the input, check for that before re-adding the elementhttp://stackoverflow.com/questions/1789656/editable-jcomboboxComment by Peter Lang on Editable JComboBoxPeter Lang2009-11-24T12:12:49Z2009-11-24T12:12:49ZWhat do you mean by set "abcd". Do you want to change the value in your model? If so, what model do you use?http://stackoverflow.com/questions/671555/how-to-convert-xsd-to-ecore-emf/750389#750389Comment by Peter Lang on How to convert xsd to ecore (EMF)Peter Lang2009-04-15T07:55:09Z2009-04-15T07:55:09ZIt works for me now, using Ganymede (3.4.2). Can you epxplain what exactely does not work for you? If you can not post comments yet, just edit your question...http://stackoverflow.com/questions/658259/getting-only-one-row-in-outer-join-using-oracle/737460#737460Comment by Peter Lang on Getting only one row in outer join using oraclePeter Lang2009-04-14T09:13:19Z2009-04-14T09:13:19Z@CoolMagma: Welcome to Stackoverflow! Please use preview before posting, and try to format code using leading spaces or the "Code Samples" button.http://stackoverflow.com/questions/685763/anyone-have-experience-with-eclipse-gmf/692242#692242Comment by Peter Lang on Anyone have experience with Eclipse GMF?Peter Lang2009-03-31T12:58:12Z2009-03-31T12:58:12ZTed, thanks a lot for your detailed answer.
Could you please point to some examples you would suggest?http://stackoverflow.com/questions/658691/how-to-select-values-from-two-tables-that-are-not-contained-in-the-map-tableComment by Peter Lang on How to select values from two tables that are not contained in the map table?Peter Lang2009-03-18T15:18:03Z2009-03-18T15:18:03ZWhat if you have two customers and only one prdouct, that both of them do not own?http://stackoverflow.com/questions/658259/getting-only-one-row-in-outer-join-using-oracle/658390#658390Comment by Peter Lang on Getting only one row in outer join using oraclePeter Lang2009-03-18T14:22:44Z2009-03-18T14:22:44ZOracle does not seem to understand the keyword AS between table-name and alias.
The queries work if I delete them, but since you use inner joins, id 3 is missing in both solutions...http://stackoverflow.com/questions/658259/getting-only-one-row-in-outer-join-using-oracle/658390#658390Comment by Peter Lang on Getting only one row in outer join using oraclePeter Lang2009-03-18T14:18:08Z2009-03-18T14:18:08ZYes, nr is unique within id, I added this to my questionhttp://stackoverflow.com/questions/658259/getting-only-one-row-in-outer-join-using-oracle/658302#658302Comment by Peter Lang on Getting only one row in outer join using oraclePeter Lang2009-03-18T13:56:52Z2009-03-18T13:56:52ZThanks! I would not consider this much simpler though, and the second join to y makes it slower than Quassnoi's solution.http://stackoverflow.com/questions/658259/getting-only-one-row-in-outer-join-using-oracle/658262#658262Comment by Peter Lang on Getting only one row in outer join using oraclePeter Lang2009-03-18T13:40:11Z2009-03-18T13:40:11ZThe DESC in PARTITION BY should be removed to get the first row, right?http://stackoverflow.com/questions/639547/is-there-a-firefox-clear-cache-keyboard-shortcut/639570#639570Comment by Peter Lang on Is there a firefox clear cache keyboard shortcut?Peter Lang2009-03-12T17:11:01Z2009-03-12T17:11:01Z+1 for being faster and more precise than me :)http://stackoverflow.com/questions/560820/sql-query-filtering/561075#561075Comment by Peter Lang on SQL query filteringPeter Lang2009-02-24T14:18:38Z2009-02-24T14:18:38Z+1 Better than my solution :)http://stackoverflow.com/questions/560820/sql-query-filtering/560890#560890Comment by Peter Lang on SQL query filteringPeter Lang2009-02-18T13:29:07Z2009-02-18T13:29:07Z@Tomalak: I was just glad to get it to work at all, feel free to reformat ;-)