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

📄 shape.java

📁 一个简单的JAVA绘图程序
💻 JAVA
字号:
//********************************************************************
//  Shape.java       Author: Lewis and Loftus / Peter DePasquale
//
//  Refinement #2
//
//  Represents a generic shape in the PaintBox application.
//********************************************************************

import java.awt.*;
import java.io.*;

abstract class Shape
{
   protected Color strokeColor;

   //-----------------------------------------------------------------
   //  Returns the current stroke color.
   //-----------------------------------------------------------------
   public Color getStrokeColor ()
   {
      return strokeColor;
   }

   //-----------------------------------------------------------------
   //  Abstract method for drawing a generic shape.
   //-----------------------------------------------------------------
   abstract public void draw (Graphics page);
}

⌨️ 快捷键说明

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