Documentation handling in wsdl/xsd editing and parsing :

+ main windows of the Type Library Editor now has, for the select item, a document view, xsd view and a dependencies view
 + each type edit dialog now has, for the select item, a document view, xsd view and a dependencies view
 + the interface file generator is able to generate the xsd documentation as comments in the Object Pascal source code

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@531 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
inoussa
2008-08-18 18:19:00 +00:00
parent 1e53041c77
commit 7a5a5c150b
38 changed files with 2778 additions and 1727 deletions

View File

@@ -28,7 +28,8 @@ Type
TComandLineOption = (
cloInterface, cloProxy, cloImp, cloBinder, cloWsdl, cloXsd,
cloOutPutDirRelative, cloOutPutDirAbsolute, cloHandleWrappedParameters
cloOutPutDirRelative, cloOutPutDirAbsolute, cloHandleWrappedParameters,
cloGenerateDocAsComments
);
TComandLineOptions = set of TComandLineOption;
@@ -76,6 +77,7 @@ begin
'w' : Include(AAppOptions,cloWsdl);
'x' : Include(AAppOptions,cloXsd);
'y' : Include(AAppOptions,cloHandleWrappedParameters);
'd' : Include(AAppOptions,cloGenerateDocAsComments);
end;
until ( c = EndOfOptions );
Result := OptInd;