Code Search for Developers
 
 
  

LinkInfoDialog.java from MASE: Agile Software Engineering at Krugle


Show LinkInfoDialog.java syntax highlighted

package fitEditor.dialogs;

import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Dialog;
import org.eclipse.swt.widgets.Shell;

public class LinkInfoDialog extends Dialog{

	 public LinkInfoDialog(Shell parent) {
		    // Pass the default styles here
		    this(parent, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
		  }

	 public LinkInfoDialog(Shell parent, int style)
	 {
		    // Let users override the default styles
		    super(parent, style);
		    setText("Input Dialog");
	 }
}





See more files for this project here

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  projectlist/
    FileLabelProvider.java
    FileTreeContentProvider.java
  table/
    IRowListViewer.java
    RowList.java
    TableAddDialog.java
    TableCellModifier.java
    TableEditDialog.java
    TableEidtor.java
    TableLabelProvider.java
  ImageInfoDialog.java
  LinkInfoDialog.java