/*
 * Widget.java
 *
 * Created on 22 May�s 2005 Pazar, 23:57
 */

package com.isoft.mmcd.skin;

import com.isoft.mmcd.utils.cfgreader.* ;
import com.isoft.mmcd.exceptions.* ;

/**
 *
 * @author Fatih
 */
public interface Widget
{
    public boolean init( MCCompoundProperty property ) throws MMCDException ;
    
    public void setWidgetName( String widgetName ) ;
    
    public String getWidgetName( ) ;
    
    public String getPopUpMenuName( ) ;
    
    public void setPopUpMenuName( String popupMenuName ) ;
    
    public void setHelpId( String helpId ) ;
    
    public String getHelpId( ) ;
    
    public int getZIndex( ) ;
    
    public int setZIndex( ) ;
}
