pier 2003/03/08 11:50:10
Modified: src/idl main.idl
Added: src/idl/cocoon _cocoon_module.idl
Removed: src/idl/cocoon cocoon.idl
Log:
Better naming for IDL modules definitions.
Revision Changes Path
1.3 +1 -1 xml-cocoon2/src/idl/main.idl
Index: main.idl
===================================================================
RCS file: /home/cvs/xml-cocoon2/src/idl/main.idl,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- main.idl 6 Mar 2003 03:48:14 -0000 1.2
+++ main.idl 8 Mar 2003 19:50:10 -0000 1.3
@@ -1,2 +1,2 @@
-#include "cocoon/cocoon.idl"
+#include "cocoon/_cocoon_module.idl"
#include "cocoon_flow/cocoon_flow.idl"
1.1 xml-cocoon2/src/idl/cocoon/_cocoon_module.idl
Index: _cocoon_module.idl
===================================================================
module cocoon {
/**
* @see org.apache.cocoon.environment.Request
*/
interface Request {
};
interface Response {
};
interface Session {
};
interface Context_ {
};
interface Environment {
};
interface ComponentManager {
};
/**
* @see java.io.OutputStream
*/
interface OutputStream {
};
interface Function {
};
typedef sequence<string> StringArray;
const short COLUMNCOUNT = 1;
const short ROWCOUNT = 1;
typedef Object Rows[ROWCOUNT];
typedef Object RowsByIndex[ROWCOUNT][COLUMNCOUNT];
interface XForm;
typedef sequence<XForm> XForms;
interface Iterator {
};
interface Continuation {
};
};