Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package pdfboxprototype; import org.apache.pdfbox.pdmodel.common.PDRectangle; import org.apache.pdfbox.pdmodel.edit.PDPageContentStream; /** * * @author Rob */ public class QuestionMark extends Annotation { /** * Empty constructor */ public QuestionMark() { } /** * Constructor for QuestionMark * * @param x * @param y */ public QuestionMark(int x, int y) { this.x = x; this.y = y; this.rectangle = new PDRectangle(); } /** * Draw method * * @param contentStream */ @Override public void draw(PDPageContentStream contentStream) { //TODO } }