Project

General

Profile

skeleton.patch

Marian Edu, 12/17/2020 02:07 AM

Download (9.58 KB)

View differences:

oo4gl/Ccs/Common/Support/IHandleHolder.cls 2020-12-17 07:04:36 +0000
1 1
interface Ccs.Common.Support.IHandleHolder
2 2
inherits Ccs.Common.Support.IPrimitiveHolder:
3
  define public property Value as handle get. set.
3
  define public property Value as handle get.
4 4
end.
oo4gl/Ccs/Common/Support/IPrimitiveHolder.cls 2020-12-17 07:04:36 +0000
1
interface Ccs.Common.Support.IPrimitiveHolder:
2
end.
1
interface Ccs.Common.Support.IPrimitiveHolder:
2

  
3
end.
oo4gl/OpenEdge/Core/Collections/ICollection.cls 2020-12-17 07:04:36 +0000
28 28

  
29 29
	method public Progress.Lang.Object extent ToArray ().
30 30

  
31
	method public OpenEdge.Core.Collections.IIterator Iterator ().
32

  
33 31
end.
oo4gl/OpenEdge/Core/Collections/IList.cls 2020-12-17 07:04:36 +0000
2 2
	inherits OpenEdge.Core.Collections.ICollection, 
3 3
		OpenEdge.Core.Collections.IIterable:
4 4

  
5
	define public property Size as integer no-undo
6
		public get.
7

  
8 5
	method public logical Add ( piIndex as integer, poElement as Progress.Lang.Object).
9 6

  
10 7
	method public logical AddAll ( piIndex as integer, poCollection as OpenEdge.Core.Collections.ICollection).
......
27 24

  
28 25
	method public OpenEdge.Core.Collections.IList SubList ( poFromPosition as integer, poToPosition as integer).
29 26

  
30
	method public logical Add ( poElement as Progress.Lang.Object).
31

  
32
	method public logical AddAll ( poCollection as OpenEdge.Core.Collections.ICollection).
33

  
34
	method public logical AddArray ( poElements as Progress.Lang.Object extent ).
35

  
36
	method public void Clear ().
37

  
38
	method public logical Contains ( poElement as Progress.Lang.Object).
39

  
40
	method public logical ContainsAll ( poCollection as OpenEdge.Core.Collections.ICollection).
41

  
42
	method public logical IsEmpty ().
43

  
44
	method public logical Remove ( poElement as Progress.Lang.Object).
45

  
46
	method public logical RemoveAll ( poCollection as OpenEdge.Core.Collections.ICollection).
47

  
48
	method public logical RetainAll ( poCollection as OpenEdge.Core.Collections.ICollection).
49

  
50
	method public void ToTable ( output table-handle p1).
51

  
52
	method public Progress.Lang.Object extent ToArray ().
53

  
54
	method public OpenEdge.Core.Collections.IIterator Iterator ().
55

  
56 27
end.
oo4gl/OpenEdge/Core/Collections/IListIterator.cls 2020-12-17 07:04:36 +0000
9 9

  
10 10
	method public integer PreviousIndex ().
11 11

  
12
	method public logical HasNext ().
13

  
14
	method public Progress.Lang.Object Next ().
15

  
16
	method public logical Remove ().
17

  
18 12
end.
oo4gl/OpenEdge/Logging/LogMessage.cls 2020-12-17 07:04:36 +0000
1 1
class OpenEdge.Logging.LogMessage:
2
  define public property Arguments as character get.
3 2

  
4 3
  define public property BaseText as character get.
5 4

  
......
39 38

  
40 39
  constructor public LogMessage(p1 as character, p2 as character, p3 as character extent):
41 40
  end.
41
  
42
  	method public void AddContext ( pKey as character, pContext as Progress.Lang.Object):
43
		  end.
44

  
45
  	method public Progress.Lang.Object GetContext ( pKey as character):
46
	  end.
42 47
end.
oo4gl/OpenEdge/Logging/Logger.cls 2020-12-17 07:04:36 +0000
87 87
  constructor public Logger(input p1 as character, input p2 as OpenEdge.Logging.LogLevelEnum, input p3 as OpenEdge.Logging.Filter.LoggerFilterList):
88 88
  end.
89 89
  
90
  constructor public Logger ( pcName as character, poLevel as OpenEdge.Logging.LogLevelEnum, poLogFilters as OpenEdge.Logging.Filter.ILoggerFilter extent ):
91
  end.
92
  
90 93
  method public void Trace(input p1 as character):
91 94
  end.
92 95
  
oo4gl/OpenEdge/Logging/VoidLogger.cls 2020-12-17 07:04:36 +0000
115 115
  method public void Warn(p1 as OpenEdge.Logging.LogMessage, p2 as Progress.Lang.Error):
116 116
  end.
117 117

  
118
  	method public override logical Equals ( poRef as Progress.Lang.Object):
119
	  end.
118 120
end.
oo4gl/Progress/IO/InputStream.cls 2020-12-17 07:04:36 +0000
1 1
class Progress.IO.InputStream abstract:
2 2
    
3
    define public property Close as logical get.
3
    define public property Closed as logical get.
4 4
    
5 5
    method public void Close():
6 6
    end.
......
8 8
    method public int64 Read( input target as memptr ):
9 9
    end.
10 10
    
11
    method public int64 Read( input target as handle ):
12
    end.
13
    
11 14
    method public abstract int64  Read( input target as memptr, input offset as int64, input length as int64 ).
12 15
    
13 16
    method public abstract int64 Read( input delimiter as character, output target as character ).
oo4gl/Progress/IO/OutputStream.cls 2020-12-17 07:04:36 +0000
12 12

  
13 13
   method public int64 Write(source-data AS MEMPTR):
14 14
   end.
15
   
16
   method public int64 Write(source-data AS handle):
17
   end.
15 18

  
16 19
   method public void Flush():
17 20
   end.