mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
34 lines
843 B
Java
34 lines
843 B
Java
package FoamXServer.CaseServer;
|
|
|
|
|
|
/**
|
|
* FoamXServer/CaseServer/IGeometryDescriptorOperations.java .
|
|
* Generated by the IDL-to-Java compiler (portable), version "3.1"
|
|
* from FoamX.idl
|
|
* 02 April 2007 09:53:40 o'clock BST
|
|
*/
|
|
|
|
|
|
// ---------------------------------------------------------------------
|
|
public interface IGeometryDescriptorOperations
|
|
{
|
|
|
|
//- Name of geometry type (eg, "volume").
|
|
String name ();
|
|
|
|
//- Name of geometry type (eg, "volume").
|
|
void name (String newName);
|
|
|
|
//- Display name (eg, "Volume").
|
|
String displayName ();
|
|
|
|
//- Display name (eg, "Volume").
|
|
void displayName (String newDisplayName);
|
|
|
|
//- Description (eg, "Finite Volume Geometry").
|
|
String description ();
|
|
|
|
//- Description (eg, "Finite Volume Geometry").
|
|
void description (String newDescription);
|
|
} // interface IGeometryDescriptorOperations
|