FRAMES2API
Interface F2ConversionInterface
- All Superinterfaces:
- java.rmi.Remote
- All Known Implementing Classes:
- F2Conversion, F2Conversion_Stub, F2ConversionDebug, F2ConversionDebug_Stub
public interface F2ConversionInterface
- extends java.rmi.Remote
Method Summary |
long |
F2AddMeasure(java.lang.String Measure,
java.lang.String BaseUnit)
|
long |
F2AddUnit(long measureHandle,
java.lang.String Unit)
|
void |
F2DeleteMeasure(long measureHandle)
|
void |
F2DeleteUnit(long measureHandle,
long unitHandle)
|
java.lang.String |
F2GetBaseUnit(long measureHandle)
|
double |
F2GetConversion(long measureHandle,
double InitValue,
java.lang.String UnitFrom,
java.lang.String UnitTo)
|
java.lang.String |
F2GetMeasure(long measureHandle)
|
long |
F2GetMeasureHandle(java.lang.String Measure)
|
java.lang.String |
F2GetUnit(long measureHandle,
long unitHandle)
|
double |
F2GetUnitFactor(long measureHandle,
long unitHandle)
|
long |
F2GetUnitHandle(long measureHandle,
java.lang.String Unit)
|
double |
F2GetUnitOffset(long measureHandle,
long unitHandle)
|
int |
F2MeasureCount()
|
void |
F2SetUnitFactor(long measureHandle,
long unitHandle,
double Factor)
|
void |
F2SetUnitOffset(long measureHandle,
long unitHandle,
double Offset)
|
int |
F2UnitsCount(long measureHandle)
|
int |
MeasureAddUnit(long measureHandle,
java.lang.String Unit)
|
void |
MeasureDeleteUnit(long measureHandle,
long unitHandle)
|
java.lang.String |
MeasureGetBaseUnit(long measureHandle)
|
long |
MeasureGetHandle(java.lang.String Measure)
|
int |
MeasureGetIndex(java.lang.String Measure)
|
java.lang.String |
MeasureGetName(long measureHandle)
|
int |
MeasuresAdd(java.lang.String Measure,
java.lang.String BaseUnit)
|
int |
MeasuresCount()
|
void |
MeasuresDelete(long measureHandle)
|
int |
MeasureUnitCount(long measureHandle)
|
double |
UnitGetConversion(long measureHandle,
double InitValue,
java.lang.String UnitFrom,
java.lang.String UnitTo)
|
double |
UnitGetFactor(long measureHandle,
long unitHandle)
|
long |
UnitGetHandle(long measureHandle,
java.lang.String Unit)
|
int |
UnitGetIndex(long measureHandle,
java.lang.String Unit)
|
java.lang.String |
UnitGetName(long measureHandle,
long unitHandle)
|
double |
UnitGetOffset(long measureHandle,
long unitHandle)
|
void |
UnitSetFactor(long measureHandle,
long unitHandle,
double Factor)
|
void |
UnitSetOffset(long measureHandle,
long unitHandle,
double Offset)
|
F2MeasureCount
int F2MeasureCount()
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2GetMeasure
java.lang.String F2GetMeasure(long measureHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2GetMeasureHandle
long F2GetMeasureHandle(java.lang.String Measure)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2UnitsCount
int F2UnitsCount(long measureHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2GetUnit
java.lang.String F2GetUnit(long measureHandle,
long unitHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2GetUnitHandle
long F2GetUnitHandle(long measureHandle,
java.lang.String Unit)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2GetConversion
double F2GetConversion(long measureHandle,
double InitValue,
java.lang.String UnitFrom,
java.lang.String UnitTo)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2AddMeasure
long F2AddMeasure(java.lang.String Measure,
java.lang.String BaseUnit)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2DeleteMeasure
void F2DeleteMeasure(long measureHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2AddUnit
long F2AddUnit(long measureHandle,
java.lang.String Unit)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2DeleteUnit
void F2DeleteUnit(long measureHandle,
long unitHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2GetUnitFactor
double F2GetUnitFactor(long measureHandle,
long unitHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2GetUnitOffset
double F2GetUnitOffset(long measureHandle,
long unitHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2SetUnitFactor
void F2SetUnitFactor(long measureHandle,
long unitHandle,
double Factor)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2SetUnitOffset
void F2SetUnitOffset(long measureHandle,
long unitHandle,
double Offset)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
F2GetBaseUnit
java.lang.String F2GetBaseUnit(long measureHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
MeasuresCount
int MeasuresCount()
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
MeasureGetName
java.lang.String MeasureGetName(long measureHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
MeasureGetIndex
int MeasureGetIndex(java.lang.String Measure)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
MeasureGetHandle
long MeasureGetHandle(java.lang.String Measure)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
MeasureUnitCount
int MeasureUnitCount(long measureHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
UnitGetName
java.lang.String UnitGetName(long measureHandle,
long unitHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
UnitGetIndex
int UnitGetIndex(long measureHandle,
java.lang.String Unit)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
UnitGetHandle
long UnitGetHandle(long measureHandle,
java.lang.String Unit)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
UnitGetConversion
double UnitGetConversion(long measureHandle,
double InitValue,
java.lang.String UnitFrom,
java.lang.String UnitTo)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
MeasuresAdd
int MeasuresAdd(java.lang.String Measure,
java.lang.String BaseUnit)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
MeasuresDelete
void MeasuresDelete(long measureHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
MeasureAddUnit
int MeasureAddUnit(long measureHandle,
java.lang.String Unit)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
MeasureDeleteUnit
void MeasureDeleteUnit(long measureHandle,
long unitHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
UnitGetFactor
double UnitGetFactor(long measureHandle,
long unitHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
UnitGetOffset
double UnitGetOffset(long measureHandle,
long unitHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
UnitSetFactor
void UnitSetFactor(long measureHandle,
long unitHandle,
double Factor)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
UnitSetOffset
void UnitSetOffset(long measureHandle,
long unitHandle,
double Offset)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
MeasureGetBaseUnit
java.lang.String MeasureGetBaseUnit(long measureHandle)
throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException