blob: 457182260d9396de84bcdb0b197fc29345e5a0c5 [file] [log] [blame]
/*
* Created on Jan 24, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package org.eclipse.ui.forms;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.swt.widgets.Composite;
/**
* @author dejan
*
* To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
public interface IDetailsPage {
/**
*
* @param form
*/
void initialize(IManagedForm form);
/**
*
* @param parent
*/
void createContents(Composite parent);
/**
*
* @param selection
*/
void inputChanged(IStructuredSelection selection);
/**
*
*
*/
void commit();
/**
*
*
*/
void setFocus();
/**
*
*
*/
void dispose();
/**
*
* @return
*/
boolean isDirty();
/**
*
*
*/
void refresh();
}