本文整理汇总了Java中org.netbeans.api.visual.animator.SceneAnimator类的典型用法代码示例。如果您正苦于以下问题:Java SceneAnimator类的具体用法?Java SceneAnimator怎么用?Java SceneAnimator使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
SceneAnimator类属于org.netbeans.api.visual.animator包,在下文中一共展示了SceneAnimator类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Scene
import org.netbeans.api.visual.animator.SceneAnimator; //导入依赖的package包/类
/**
* Creates a scene.
*/
public Scene () {
super (null);
defaultFont = Font.decode (null);
resolveBounds (new Point (), new Rectangle ());
setOpaque(true);
setFont (defaultFont);
setBackground (lookFeel.getBackground ());
setForeground (lookFeel.getForeground ());
sceneAnimator = new SceneAnimator (this);
}
示例2: CenteredZoomAnimator
import org.netbeans.api.visual.animator.SceneAnimator; //导入依赖的package包/类
CenteredZoomAnimator(SceneAnimator sceneAnimator) {
super (sceneAnimator);
}
示例3: PreferredLocationAnimator
import org.netbeans.api.visual.animator.SceneAnimator; //导入依赖的package包/类
public PreferredLocationAnimator (SceneAnimator sceneAnimator) {
super (sceneAnimator);
}
示例4: ZoomAnimator
import org.netbeans.api.visual.animator.SceneAnimator; //导入依赖的package包/类
public ZoomAnimator (SceneAnimator sceneAnimator) {
super (sceneAnimator);
}
示例5: PreferredBoundsAnimator
import org.netbeans.api.visual.animator.SceneAnimator; //导入依赖的package包/类
public PreferredBoundsAnimator (SceneAnimator sceneAnimator) {
super (sceneAnimator);
}
示例6: ColorAnimator
import org.netbeans.api.visual.animator.SceneAnimator; //导入依赖的package包/类
public ColorAnimator (SceneAnimator sceneAnimator) {
super (sceneAnimator);
}
示例7: getSceneAnimator
import org.netbeans.api.visual.animator.SceneAnimator; //导入依赖的package包/类
/**
* Returns a scene animator of the scene.
* @return the scene animator
*/
public final SceneAnimator getSceneAnimator () {
return sceneAnimator;
}
示例8: getSceneAnimator
import org.netbeans.api.visual.animator.SceneAnimator; //导入依赖的package包/类
/**
* Returns a scene animator of the scene.
*
* @return the scene animator
*/
SceneAnimator getSceneAnimator();