Pubblicazione File: CValue
Documento generato mediante: Documentation Creator By BGSoftware


VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
  Persistable = 0  'NotPersistable
  DataBindingBehavior = 0  'vbNone
  DataSourceBehavior  = 0  'vbNone
  MTSTransactionMode  = 0  'NotAnMTSObject
END
Attribute VB_Name = "CValue"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
' *********************************************************************
'* CLASS Classe astratta che rappresenta un valore di una variabile semplice
'* <BR/>Autore: <B>Giorgio Bernardi</B>
'* E-Mail: <A HREF="mailto:giorgio.bernardi@studio.unibo.it">Giorgio.Bernardi@studio.unibo.it</A>
'* Data  : Settembre 2004
'* <DIV CLASS="ClassDescription">
'*  Implementare i metodi di questa classe per ogni tipo di dato (es: String, Integer, ecc...)
'* </DIV>
' *********************************************************************
Option Explicit

'* Restituisce la rappresentazione in forma di stringa del valore memorizzato
Public Function getActualValueToString() As String
End Function

'* Setta il valore memorizzato dalla rappresentazione in forma di stringa
Public Function setActualValueFromString(newValue As String) As Boolean
End Function

'* Restituisce il nome del tipo di dato memorizzato
Public Function getType() As String
End Function

'* Funzione presente in Visual Basic per trasformare il valore memorizzato in Variant
Public Function toVariant() As Variant
End Function

Documento generato mediante: Documentation Creator By BGSoftware