home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 September
/
CHIPCD_9_99.iso
/
software
/
uaktualnienia
/
OptionPackPL
/
iis4_07.cab
/
Application.java
< prev
next >
Wrap
Text File
|
1998-04-27
|
2KB
|
58 lines
/* ********************************************************************************
Application.java ***************************************************************
******************************************************************************** */
package aspcomp;
import com.ms.asp.*;
/**
* Cover class for the ASP Application intrinsic.
*/
public class Application extends ObjectDictionary
{
/* ********************************************************************************
Constructor ********************************************************************
******************************************************************************** */
public Application(IApplicationObject app)
{
super(app.getContents());
m_IApplication = app;
staticObjects = new ObjectDictionary(app.getStaticObjects());
}
/* ********************************************************************************
Internal (Private) Variables ***************************************************
******************************************************************************** */
private IApplicationObject m_IApplication;
/* ********************************************************************************
External (Public) Variables ****************************************************
******************************************************************************** */
/**
* Provide access to application-scoped objects created in global.asa
*/
public ObjectDictionary staticObjects;
/* ********************************************************************************
External (Public) Methods ******************************************************
******************************************************************************** */
public void lock()
{
m_IApplication.Lock();
}
public void unlock()
{
m_IApplication.UnLock();
}
}