CloneSet792


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
18210.979class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11889
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/gui/FontChooser.java
218114
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/gui/FontChooser.java
Next
Last
Clone Instance
1
Line Count
18
Source Line
89
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/gui/FontChooser.java

/**
 * ctor specifying the parent frame.
 *
 * @param       owner   Parent frame.
 */
public FontChooser(Frame owner) {
  super(owner, s_stringMgr.getString("FontChooser.title"), true);
  _selectStyles = true;
  createUserInterface();
}

/**
 * ctor specifying the parent frame and whether styles can be selected.
 *
 * @param       owner                   Parent frame.
 * @param       selectStyles    If <TT>true</TT> bold and italic checkboxes displayed.
 */
public FontChooser(Frame owner, boolean selectStyles) {
  super(owner, s_stringMgr.getString("FontChooser.title"), true);
  _selectStyles = selectStyles;
  createUserInterface();
}


First
Previous
Clone Instance
2
Line Count
18
Source Line
114
Source File
E:/TSE/Projects-CloneDR/sql12/fw/src/net/sourceforge/squirrel_sql/fw/gui/FontChooser.java

/**
 * ctor specifying the parent dialog.
 *
 * @param       owner   Parent frame.
 */
public FontChooser(Dialog owner) {
  super(owner, s_stringMgr.getString("FontChooser.title"), true);
  _selectStyles = true;
  createUserInterface();
}

/**
 * ctor specifying the parent dialog and whether styles can be selected.
 *
 * @param       owner   Parent frame.
 * @param       selectStyles    If <TT>true</TT> bold and italic checkboxes displayed.
 */
public FontChooser(Dialog owner, boolean selectStyles) {
  super(owner, s_stringMgr.getString("FontChooser.title"), true);
  _selectStyles = selectStyles;
  createUserInterface();
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
         * ctor specifying the parent frame.
         *
         * @param       owner   Parent frame.
         */
/**
         * ctor specifying the parent dialog.
         *
         * @param       owner   Parent frame.
         */
public FontChooser( [[#variable1cca49a0]] owner) {
  super(owner, s_stringMgr.getString("FontChooser.title"), true);
  _selectStyles = true;
  createUserInterface();
}

/**
         * ctor specifying the parent frame and whether styles can be selected.
         *
         * @param       owner                   Parent frame.
         * @param       selectStyles    If <TT>true</TT> bold and italic checkboxes displayed.
         */
/**
         * ctor specifying the parent dialog and whether styles can be selected.
         *
         * @param       owner   Parent frame.
         * @param       selectStyles    If <TT>true</TT> bold and italic checkboxes displayed.
         */
public FontChooser( [[#variable1cca49a0]] owner, boolean selectStyles) {
  super(owner, s_stringMgr.getString("FontChooser.title"), true);
  _selectStyles = selectStyles;
  createUserInterface();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1cca49a0]]
Frame 
12[[#1cca49a0]]
Dialog