-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
740 additions
and
467 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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")); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
366 changes: 187 additions & 179 deletions
366
src/org/ohdsi/rabbitInAHat/ETLTestFrameWorkGenerator.java
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.