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

com.sun.media.controls.VFlowLayout Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package com.sun.media.controls;

import java.awt.*;

/**
 * TODO: stub.
 *
 * @author Ken Larson
 *
 */
public class VFlowLayout implements LayoutManager
{
    public VFlowLayout()
    {
        throw new UnsupportedOperationException(); // TODO
    }

    public VFlowLayout(int v)
    {
        throw new UnsupportedOperationException(); // TODO
    }

    public void addLayoutComponent(String name, Component comp)
    {
        throw new UnsupportedOperationException(); // TODO
    }

    public void layoutContainer(Container parent)
    {
        throw new UnsupportedOperationException(); // TODO
    }

    public Dimension minimumLayoutSize(Container parent)
    {
        throw new UnsupportedOperationException(); // TODO
    }

    public Dimension preferredLayoutSize(Container parent)
    {
        throw new UnsupportedOperationException(); // TODO
    }

    public void removeLayoutComponent(Component comp)
    {
        throw new UnsupportedOperationException(); // TODO
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy