com.sun.media.controls.VFlowLayout Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fmj Show documentation
Show all versions of fmj Show documentation
Freedom for Media in Java
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
}
}