Document.js

Summary

No overview generated for 'Document.js'


Class Summary
draw2d.Document  

/* This notice must be untouched at all times.

Open-jACOB Draw2D
The latest version is available at
http://www.openjacob.org

Copyright (c) 2006 Andreas Herz. All rights reserved.
Created 5. 11. 2006 by Andreas Herz (Web: http://www.freegroup.de )

LICENSE: LGPL

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License (LGPL) as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA,
or see http://www.gnu.org/copyleft/lesser.html
*/

/**
 * 
 * @version 0.9.14
 * @author Andreas Herz
 * @constructor
 */
draw2d.Document=function(/*:draw2d.Canvas*/ canvas)
{
  /* @private */
  this.canvas = canvas;
}

/**
 * 
 * @type draw2d.ArrayList
 **/
draw2d.Document.prototype.getFigures=function()
{
  var result = new draw2d.ArrayList();

  var figures = this.canvas.figures;
  var dialogs = this.canvas.dialogs;
  for(var i=0;i<figures.getSize();i++)
  {
    var figure = figures.get(i);
    // Return all root elements (not children of a compartment) and no windows/dialogs
    if(dialogs.indexOf(figure)==-1 && figure.getParent()==null && !(figure instanceof draw2d.Window))
    {
        result.add(figure);
    }
  }
  return result;
}

/**
 * 
 * @type draw2d.Figure
 **/
draw2d.Document.prototype.getFigure=function(/*:String*/ id)
{
  return this.canvas.getFigure(id);
}

draw2d.Document.prototype.getLines=function()
{
  return this.canvas.getLines();
}


Documentation generated by JSDoc on Thu Feb 7 23:45:47 2008