/* Copyright (c) 1997-2006
Ewgenij Gawrilow, Michael Joswig (Technische Universitaet Berlin, Germany)
http://www.math.tu-berlin.de/polymake, mailto:polymake@math.tu-berlin.de
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version: http://www.gnu.org/licenses/gpl.txt.
This program 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 General Public License for more details.
$Project: polymake $$Id: JavaviewStaticFrame.java 7529 2006-12-20 16:57:12Z thilosch $
*/
package de.tuberlin.polymake.common;
import java.awt.BorderLayout;
import java.awt.Component;
import java.util.Properties;
/**
* This class implements ???
*
* @author Thilo Schröder
*/
public class JavaviewStaticFrame extends JavaviewFrame {
/**
*/
public JavaviewStaticFrame(EmbeddedGeometries e_geom,
Properties params, Properties iparams,
JavaviewControl parent) {
super(e_geom,params,iparams,parent);
setLayout(new BorderLayout());
add((Component)disp,BorderLayout.CENTER);
pack();
polymakeViewer.start();
}
public void update(PointSet ps, Properties params) {}
}
syntax highlighted by Code2HTML, v. 0.9.1