Difference between revisions of "ADE Server Class Reference"

(Marked this version for translation)
m (Removed redundant headings etc.)
Line 6: Line 6:
  
 
<!--T:2-->
 
<!--T:2-->
The ADE server classes are [[CAEngine]], [[CAObject]], [[CATable]], [[CAIndex]],[[CARenderingStyle]], [[CALicense]], and [[IAdeUICallbacks]]. They are listed below in that order, with a short description each class.
+
These are the ADE server classes:
  
=CAEngine= <!--T:3-->
+
*[[CAEngine]] class contains methods and properties that allow you to open and close existing models, create new models, create new Analytica objects, and access Analytica objects contained in your model. Use of ADE really starts with the creation of a CAEngine object, from which all else flows.
See full article at [[CAEngine]].
+
*[[CAObject]] is ADE's wrapper for an Analytica object, such as a variable or module. It provides access the the object's attributes, including its definition and result. It often is used as a stepping stone for obtaining a variable's result table.
 +
*[[CATable]] provides the equivalent of an intelligent array. It is used to wrap an Edit Table, allowing your program to change cell values, or a result array, allowing you to access individual cells, slices, or even a graph image of the result.
 +
*[[CAIndex]] provides information about the index of a [[CATable]].
  
<!--T:4-->
+
*[[CARenderingStyle]] controls how atomic values are returned by ADE methods and properties. For example, you may want numbers returned numerically, or as formatted text. A [[CARenderingStyle]] is already present as a property on any [[CAObject]] or [[CATable]]. Separate default [[CARenderingStyle]] for both [[CAObject::DefTable|DefTables]] and [[CAObject::ResultTable|ResultTables]] are maintained on [[CAEngine::DefaultDefTableRenderingStyle]] and [[CAEngine::DefaultRenderingStyle]].  
[[CAEngine]] class contains methods and properties that allow you to open and close existing models, create new models, create new Analytica objects, and access Analytica objects contained in your model. Use of ADE really starts with the creation of a CAEngine object, from which all else flows.
 
  
=CAObject= <!--T:5-->
+
*[[CALicense]] provides a method for instantiating a [[CAEngine]], and provides details about why such an instantiation failed, which would otherwise not be available if you instantiate the [[CAEngine]] directly. It also provides some information about limitations in your license to use [[ADE]].
See full article at [[CAObject]].
 
  
<!--T:6-->
+
*[[IAdeUICallbacks]] is an interface that allows you to implement callbacks that are called when Analytica functions requiring user input are evaluated. You can implement these callbacks to support these user interface interactions in your own application. In many cases, the name of each method corresponds fairly directly with the name of the Analytica function that produces the user interaction.
A [[CAObject]] is ADE's wrapper for an Analytica object, such as a variable or module. It provides access the the object's attributes, including its definition and result. It often is used as a stepping stone for obtaining a variable's result table.
+
When your application does not implement this interface, most of the functions requiring user interaction will do nothing when evaluated in ADE.
 
+
The "IAde" prefix stands for "Interface ADE". Your own code can define a class that subclasses this interface and implements its method, and then pass it to [[CAEngine::SetCallbackObject]].
= CATable= <!--T:7-->
 
See full article at [[CATable]].
 
 
 
<!--T:8-->
 
ADE's [[CATable]] class provides the equivalent of an intelligent array. It is used to wrap an Edit Table, allowing your program to change cell values, or a result array, allowing you to access individual cells, slices, or even a graph image of the result.
 
 
 
= CAIndex = <!--T:9-->
 
See full article at [[CAIndex]].
 
 
 
<!--T:10-->
 
The [[CAIndex]] class provides information about the index of a [[CATable]].
 
 
 
=CARenderingStyle= <!--T:11-->
 
See full article at [[CARenderingStyle]].
 
 
 
<!--T:12-->
 
A [[CARenderingStyle]] controls how atomic values are returned by ADE methods and properties. For example, you may want numbers returned numerically, or as formatted text. A [[CARenderingStyle]] is already present as a property on any [[CAObject]] or [[CATable]]. Separate default [[CARenderingStyle]] for both [[CAObject::DefTable|DefTables]] and [[CAObject::ResultTable|ResultTables]] are maintained on [[CAEngine::DefaultDefTableRenderingStyle]] and [[CAEngine::DefaultRenderingStyle]].
 
 
 
=CALicense= <!--T:13-->
 
See full article at [[CALicense]].
 
 
 
<!--T:14-->
 
The [[CALicense]] provides a method for instantiating a [[CAEngine]], and provides details about why such an instantiation failed, which would otherwise not be available if you instantiate the [[CAEngine]] directly. It also provides some information about limitations in your license to use [[ADE]].
 
 
 
=IAdeUICallbacks= <!--T:15-->
 
See full article at [[IAdeUICallbacks]].
 
  
<!--T:16-->
 
 
''New to [[Analytica 4.6|ADE 4.6]]''
 
''New to [[Analytica 4.6|ADE 4.6]]''
  
<!--T:17-->
+
== Examples == <!--T:20-->
This interface allows you to implement callbacks that are called when Analytica functions requiring user input are evaluated. You can implement these callbacks to support these user interface interactions in your own application. In many cases, the name of each method corresponds fairly directly with the name of the Analytica function that produces the user interaction.
 
 
 
<!--T:18-->
 
When your application does not implement this interface, most of the functions requiring user interaction will do nothing when evaluated in ADE.
 
 
 
<!--T:19-->
 
The "IAde" prefix stands for "Interface ADE".  Your own code can define a class that subclasses this interface and implements its method, and then pass it to [[CAEngine::SetCallbackObject]].
 
 
 
= Examples = <!--T:20-->
 
  
== PHP == <!--T:21-->
+
<!--T:21-->
 
The attached PHP script:
 
The attached PHP script:
 
#Creates an instance of ADE.
 
#Creates an instance of ADE.
Line 72: Line 36:
  
 
  <!--T:22-->
 
  <!--T:22-->
<?php
+
<?php
 
     $currentPath = getcwd()."\\";
 
     $currentPath = getcwd()."\\";
 
     $ade = new COM("ADE4.CAEngine") or die("Unable to instantiate ADE");
 
     $ade = new COM("ADE4.CAEngine") or die("Unable to instantiate ADE");

Revision as of 22:54, 22 July 2015

Other languages:
English • ‎中文

ADE User Guide >

These are the ADE server classes:

  • CAEngine class contains methods and properties that allow you to open and close existing models, create new models, create new Analytica objects, and access Analytica objects contained in your model. Use of ADE really starts with the creation of a CAEngine object, from which all else flows.
  • CAObject is ADE's wrapper for an Analytica object, such as a variable or module. It provides access the the object's attributes, including its definition and result. It often is used as a stepping stone for obtaining a variable's result table.
  • CATable provides the equivalent of an intelligent array. It is used to wrap an Edit Table, allowing your program to change cell values, or a result array, allowing you to access individual cells, slices, or even a graph image of the result.
  • CAIndex provides information about the index of a CATable.
  • CALicense provides a method for instantiating a CAEngine, and provides details about why such an instantiation failed, which would otherwise not be available if you instantiate the CAEngine directly. It also provides some information about limitations in your license to use ADE.
  • IAdeUICallbacks is an interface that allows you to implement callbacks that are called when Analytica functions requiring user input are evaluated. You can implement these callbacks to support these user interface interactions in your own application. In many cases, the name of each method corresponds fairly directly with the name of the Analytica function that produces the user interaction.

When your application does not implement this interface, most of the functions requiring user interaction will do nothing when evaluated in ADE. The "IAde" prefix stands for "Interface ADE". Your own code can define a class that subclasses this interface and implements its method, and then pass it to CAEngine::SetCallbackObject.

New to ADE 4.6

Examples

The attached PHP script:

  1. Creates an instance of ADE.
  2. Creates a new model.
  3. Creates a Variable Object.
  4. Modifies the definition of the created Variable to '4+1*7'.
  5. Get the result back from the created object and prints it out.
  6. Saves the created model to a file 'TestModel.ana' in the current directory.
  7. Closes the model.
 <?php
    $currentPath = getcwd()."\\";
    $ade = new COM("ADE4.CAEngine") or die("Unable to instantiate ADE");
    echo "ADE successfully loaded.\n";
    $modelCreated = $ade->CreateModel("MyNewModel");
    if($modelCreated == true){
        echo "Model successfully created.\n";

        $newObject = $ade->CreateObject("MyVariable", "Variable");
        $newObject->SetAttribute("Definition", "4+1*7");

        $result = $newObject->Result();
        echo "The new object's result is: ". $result .".\n";

        $ade->SaveModel($currentPath."TestModel.ana");
        $ade->CloseModel();
        echo "Model succussfully closed.\n\n";
    }
    else{
        echo "Model creation failed.\n\n";
    }
?>

See Also

Working with Models, Modules, and Files in ADE <- ADE Server Class Reference -> CAEngine
Comments


You are not allowed to post comments.