001        package com.croftsoft.apps.jogl;
002    
003        import java.awt.*;
004         
005        /***********************************************************************
006        * JOGL configuration.
007        *  
008        * @version
009        *   $Id: JoglConfig.java,v 1.7 2008/04/19 23:52:10 croft Exp $
010        * @since
011        *   2008-02-18
012        * @author
013        *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
014        ***********************************************************************/
015    
016        public interface  JoglConfig
017        ////////////////////////////////////////////////////////////////////////
018        ////////////////////////////////////////////////////////////////////////
019        {
020           
021        public String     getInfo ( );
022         
023        public Dimension  getFrameSize ( );
024         
025        public String     getFrameTitle ( );
026    
027        public String     getShutdownConfirmationPrompt ( );
028         
029        public String     getThreadName ( );
030         
031        public double     getUpdateRate ( );
032         
033        ////////////////////////////////////////////////////////////////////////
034        ////////////////////////////////////////////////////////////////////////
035        }