package presentation;

import java.awt.*;

class ElTextColumn implements IElement {
    String text;
    int width, height;
    
    public void paint(Graphics g) {
        g.drawRect(-width/2, -height/2, width, height);
    }
    
    public boolean contains(int x, int y) {
        return false;
    }
    
    public Rectangle getBounds() {
        return null;
    }
}
