ICU-3348 @draft ICU 2.2 => @stable ICU 2.8t.

X-SVN-Rev: 13890
This commit is contained in:
Eric Mader 2003-11-26 00:19:39 +00:00
parent 560d885690
commit a5a22aaab2
18 changed files with 60 additions and 60 deletions

View File

@ -77,14 +77,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -37,14 +37,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -60,14 +60,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -50,14 +50,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -4,7 +4,7 @@
*
* (C) Copyright IBM Corp. 1998-2003 - All Rights Reserved.
*
* $Source: /xsrl/Nsvn/icu/icu/source/layout/HanLayoutEngine.h,v $ $Date: 2003/06/10 17:44:58 $ $Revision: 1.3 $
* $Source: /xsrl/Nsvn/icu/icu/source/layout/HanLayoutEngine.h,v $ $Date: 2003/11/26 00:19:39 $ $Revision: 1.4 $
*/
#ifndef __HANLAYOUTENGINE_H
@ -60,14 +60,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -84,14 +84,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -39,14 +39,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -38,7 +38,7 @@ public:
*
* @return the adjusted character
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual LEUnicode32 mapChar(LEUnicode32 ch) const = 0;
};
@ -75,7 +75,7 @@ public:
* This virtual destructor is here so that the subclass
* destructors can be invoked through the base class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline ~LEFontInstance() {};
@ -150,7 +150,7 @@ public:
* @return the address of the table in memory, or <code>NULL</code>
* if the table doesn't exist.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual const void *getFontTable(LETag tableTag) const = 0;
@ -178,7 +178,7 @@ public:
*
* @return the number of design units pre EM.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual le_int32 getUnitsPerEM() const = 0;
@ -253,7 +253,7 @@ public:
*
* @return true if the point coordinates could be stored.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual le_bool getGlyphPoint(LEGlyphID glyph, le_int32 pointNumber, LEPoint &point) const = 0;
@ -263,7 +263,7 @@ public:
*
* @return the pixel width of the EM square
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual float getXPixelsPerEm() const = 0;
@ -273,7 +273,7 @@ public:
*
* @return the pixel height of the EM square
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual float getYPixelsPerEm() const = 0;
@ -395,7 +395,7 @@ public:
*
* @return the floating point value
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static float fixedToFloat(le_int32 fixed);
@ -407,7 +407,7 @@ public:
*
* @return the fixed point value
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static le_int32 floatToFixed(float theFloat);

View File

@ -17,7 +17,7 @@ U_NAMESPACE_BEGIN
* A convenience macro which invokes the swapWord member function
* from a concise call.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
#define SWAPW(value) (LESwaps::isBigEndian() ? (value) : LESwaps::swapWord(value))
@ -26,7 +26,7 @@ U_NAMESPACE_BEGIN
* A convenience macro which invokes the swapLong member function
* from a concise call.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
#define SWAPL(value) (LESwaps::isBigEndian() ? (value) : LESwaps::swapLong(value))
@ -39,7 +39,7 @@ U_NAMESPACE_BEGIN
* All methods are static and inline in an attempt to induce the compiler
* to do most of the calculations at compile time.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
class U_LAYOUT_API LESwaps /* not : public UObject because all methods are static */ {
public:
@ -53,7 +53,7 @@ public:
*
* @return true if the platform is big endian
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static le_bool isBigEndian()
{
@ -70,7 +70,7 @@ public:
*
* @return the byte swapped word
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static le_uint16 swapWord(le_uint16 value)
{
@ -85,7 +85,7 @@ public:
*
* @return the byte swapped long
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static le_uint32 swapLong(le_uint32 value)
{

View File

@ -61,7 +61,7 @@ class LEGlyphFilter;
* @see LEFontInstance
* @see ScriptAndLanguageTags.h
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
class U_LAYOUT_API LayoutEngine : public UObject {
protected:
@ -287,7 +287,7 @@ public:
* method. It is declared virtual so that it will be invoked by the
* subclass destructors.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual ~LayoutEngine();
@ -310,7 +310,7 @@ public:
* Note; the glyph, character index and position array can be accessed
* using the getter method below.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual le_int32 layoutChars(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, float x, float y, LEErrorCode &success);
@ -321,7 +321,7 @@ public:
*
* @return the number of glyphs in the glyph array
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
le_int32 getGlyphCount() const
{
@ -336,7 +336,7 @@ public:
* @param glyphs - the destiniation glyph array
* @param success - set to an error code if the operation fails
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
void getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const;
@ -350,7 +350,7 @@ public:
* @param extraBits - this value will be ORed with each glyph index
* @param success - set to an error code if the operation fails
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
@ -362,7 +362,7 @@ public:
* @param charIndices - the destiniation character index array
* @param success - set to an error code if the operation fails
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
void getCharIndices(le_int32 charIndices[], LEErrorCode &success) const;
@ -375,7 +375,7 @@ public:
* @param indexBase - an offset which will be added to each index
* @param success - set to an error code if the operation fails
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
void getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const;
@ -388,7 +388,7 @@ public:
* @param glyphs - the destiniation position array
* @param success - set to an error code if the operation fails
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
void getGlyphPositions(float positions[], LEErrorCode &success) const;
@ -404,7 +404,7 @@ public:
* @param y - the glyph's Y position
* @param success - set to an error code if the operation fails
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
void getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const;
@ -413,7 +413,7 @@ public:
* so that the LayoutEngine can be reused to layout a different
* characer array. (This method is also called by the destructor)
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual void reset();
@ -431,21 +431,21 @@ public:
*
* @see LEFontInstance
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static LayoutEngine *layoutEngineFactory(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, LEErrorCode &success);
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -39,14 +39,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -113,14 +113,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -33,14 +33,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -33,14 +33,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -33,14 +33,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -33,14 +33,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -54,14 +54,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }

View File

@ -33,14 +33,14 @@ public:
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*
* @draft ICU 2.2
* @stable ICU 2.8
*/
static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }