Ignore:
Timestamp:
04/14/14 14:10:49 (11 years ago)
Author:
Eric.Larour
Message:

CHG: implemented createxml method for each class.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/outputdefinition.m

    r16764 r17720  
    99        end
    1010        methods
     11           function createxml(obj,fid) % {{{
     12            fprintf(fid, '<!-- outputdefinition -->\n');           
     13                   
     14            % outputdefinition solution parameters
     15            fprintf(fid,'%s\n%s\n%s\n','<frame key="1" label="outputdefinition">','<section name="outputdefinition" />');                   
     16                fprintf(fid,'%s%s%s%s%s\n%s\n%s\n%s\n','  <parameter key ="definitions" type="',class(obj.definitions),'" default="',convert2str(obj.definitions),'">','     <section name="outputdefinition" />','     <help> list of potential outputs that can be requested, but which need additional data to be defined </help>','  </parameter>');
     17            fprintf(fid,'%s\n%s\n','</frame>');   
     18       
     19        end % }}}
    1120                function obj = outputdefinition(varargin) % {{{
    1221                        switch nargin
Note: See TracChangeset for help on using the changeset viewer.