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

de.fhkiel.ki.cathedral.gui.Cell Maven / Gradle / Ivy

The newest version!
package de.fhkiel.ki.cathedral.gui;

import java.awt.Color;
import java.awt.Point;
import javax.swing.JLabel;

class Cell {
  final JLabel label;
  final Point position;
  final Color base;
  public Cell(JLabel label, Point position) {
    this.label = label;
    this.position = position;
    this.base = null;
  }

  public Cell(JLabel label, Point position, Color base) {
    this.label = label;
    this.position = position;
    this.base = base;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy