Skip to content

Commit

Permalink
Added stem table option
Browse files Browse the repository at this point in the history
  • Loading branch information
schuemie committed Aug 17, 2016
1 parent fbfcf00 commit de29a85
Show file tree
Hide file tree
Showing 14 changed files with 740 additions and 467 deletions.
23 changes: 23 additions & 0 deletions src/org/ohdsi/rabbitInAHat/DescriptionTextArea.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package org.ohdsi.rabbitInAHat;

import javax.swing.JTextArea;
import javax.swing.UIManager;

public class DescriptionTextArea extends JTextArea {

private static final long serialVersionUID = -3065135241375027552L;

public DescriptionTextArea(String text) {
super(text);

setWrapStyleWord(true);
setLineWrap(true);
setOpaque(false);
setEditable(false);
setFocusable(false);
setBackground(UIManager.getColor("Label.background"));
setFont(UIManager.getFont("Label.font"));
setBorder(UIManager.getBorder("Label.border"));
}

}
2 changes: 1 addition & 1 deletion src/org/ohdsi/rabbitInAHat/DetailsPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ private class FieldPanel extends JPanel implements DocumentListener {
private static final long serialVersionUID = -4393026616049677944L;
private JLabel nameLabel = new JLabel("");
private JLabel rowCountLabel = new JLabel("");
private RiaH_JTextArea description = new RiaH_JTextArea ("");
private DescriptionTextArea description = new DescriptionTextArea ("");
private SimpleTableModel valueTable = new SimpleTableModel("Value", "Frequency", "Percent of Total (%)");
private JTextArea commentsArea = new JTextArea();
private Field field;
Expand Down
366 changes: 187 additions & 179 deletions src/org/ohdsi/rabbitInAHat/ETLTestFrameWorkGenerator.java

Large diffs are not rendered by default.

Loading

0 comments on commit de29a85

Please sign in to comment.