31 lines
1.2 KiB
Java
31 lines
1.2 KiB
Java
/*
|
|
* Copyright (c) 2008,2009 Declarative Engineering LLC.
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Declarative Engineering LLC
|
|
* verson 1 which accompanies this distribution, and is available at
|
|
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
|
*/
|
|
package com.foundation.view.swt;
|
|
|
|
public interface IAbstractMenu {
|
|
/**
|
|
* Creates this menu's resources.
|
|
* This allows the menu to be lazily created when the user wants to interact with it, and then cleaned up when done.
|
|
*/
|
|
public void loadMenu();
|
|
/**
|
|
* Destroys this menu's resources.
|
|
* This allows the menu to be lazily created when the user wants to interact with it, and then cleaned up when done.
|
|
*/
|
|
public void unloadMenu();
|
|
/**
|
|
* Creates the menu's children's resources (all children in the tree).
|
|
* This allows the menu to be lazily created when the user wants to interact with it, and then cleaned up when done.
|
|
*/
|
|
public void loadMenuChildren();
|
|
/**
|
|
* Destroys the menu's children's resources (all children in the tree).
|
|
* This allows the menu to be lazily created when the user wants to interact with it, and then cleaned up when done.
|
|
*/
|
|
public void unloadMenuChildren();
|
|
}//IAbstractMenu// |