⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 allingmentcomponent.java

📁 sound recorder which supports .wav format files
💻 JAVA
字号:
package com.vimas.interfaceapplet;

import java.awt.*;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2004</p>
 * <p>Company: Vimas technologies</p>
 * @author miha
 * @version 1.0
 */

public class AllingmentComponent extends Component
{
  int width;
  int height;

  public AllingmentComponent(int w, int h)
  {
    super();
    this.width=w;
    this.height=h;
  }
  //*****************************************************************************
  public Dimension getPreferredSize()
  {
      return new Dimension(width, height);
  }
//*****************************************************************************
  public Dimension getMinimumSize() {
      return new Dimension(width, height);
  }
//*****************************************************************************
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -