All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.netbeans.modeler.svg.SvgNodeWidget Maven / Gradle / Ivy

Go to download

Jeddict is an open source Jakarta EE application development platform that accelerates developers productivity and simplifies development tasks of creating complex entity relationship models.

There is a newer version: 6.6.0
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package org.netbeans.modeler.svg;

import java.awt.Shape;
import java.awt.geom.AffineTransform;
import org.netbeans.api.visual.widget.Scene;
import org.netbeans.api.visual.widget.Widget;
import org.netbeans.modeler.widget.node.INodeWidget;

/**
 *
 * @author jGauravGupta
 */
public abstract class SvgNodeWidget extends Widget {

    public SvgNodeWidget(Scene scene) {
        super(scene);
    }
 
    public abstract SVGDocument getSvgDocument();
    
    public abstract void setSVGDocument(SVGDocument document);
    
    public abstract INodeWidget getParentNodeWidget();
    
    public abstract AffineTransform getTransform();
    
    public abstract Shape getOutlineShape();
    
    public abstract ResizeType getResizeType();
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy