Skip to content

Commit

Permalink
remove useless default javadoc generated by IDE
Browse files Browse the repository at this point in the history
  • Loading branch information
asolntsev committed Sep 26, 2023
1 parent c0dd23f commit 71d1c8f
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 45 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@
import org.xhtmlrenderer.render.FSFontMetrics;

/**
* Created by IntelliJ IDEA.
* User: tobe
* Date: 2005-jun-23
* Time: 00:12:50
* To change this template use File | Settings | File Templates.
*/
public interface CssContext {
float getMmPerDot();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,8 @@
import java.awt.*;

/**
* Created by IntelliJ IDEA.
* User: patrick
* Date: Oct 21, 2005
* Time: 3:24:04 PM
* To change this template use File | Settings | File Templates.
*/
public class BorderPropertySet extends RectPropertySet {
public static final BorderPropertySet EMPTY_BORDER = new BorderPropertySet(0.0f, 0.0f, 0.0f, 0.0f);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,8 @@
import static java.util.Arrays.asList;

/**
* Created by IntelliJ IDEA.
* User: tobe
* Date: 2005-jun-23
* Time: 00:28:43
* To change this template use File | Settings | File Templates.
*/
public class FontSpecification {
public float size;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
package org.xhtmlrenderer.swing;

/**
* Created by IntelliJ IDEA.
* User: pdoubleya
* Date: Apr 20, 2009
* Time: 10:54:37 PM
* To change this template use File | Settings | File Templates.
*/
public interface RepaintListener {
void repaintRequested(boolean doLayout);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,8 @@
import java.io.PrintWriter;

/**
* Created by IntelliJ IDEA.
* User: tobe
* Date: 2005-jan-05
* Time: 09:21:10
* To change this template use File | Settings | File Templates.
*/
public class GenerateBigFile {
public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
package org.xhtmlrenderer.util;

import java.io.InputStream;
import java.io.BufferedInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.BufferedInputStream;
import java.net.URLConnection;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;

/**
* Created by IntelliJ IDEA.
* User: pdoubleya
* Date: May 15, 2009
* Time: 11:56:03 AM
* To change this template use File | Settings | File Templates.
*/
public class StreamResource {
private final String _uri;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package org.xhtmlrenderer.pdf;

import com.itextpdf.text.pdf.PdfAcroForm;
import com.itextpdf.text.pdf.PdfContentByte;
import com.itextpdf.text.pdf.PdfFormField;
import com.itextpdf.text.pdf.PdfWriter;
import org.w3c.dom.Element;
import org.xhtmlrenderer.layout.LayoutContext;
Expand All @@ -12,31 +10,24 @@
import java.awt.*;

/**
* Created by IntelliJ IDEA.
* User: beck
* Date: 11/4/11
* Time: 12:42 PM
*/

public class EmptyReplacedElement extends AbstractFormField
{
private static final String FIELD_TYPE = "Hidden";

private int _width;
private int _height;
private final int _width;
private final int _height;

private Point _location = new Point(0, 0);

public EmptyReplacedElement(int width, int height)
{
public EmptyReplacedElement(int width, int height) {
_width = width;
_height = height;
}

public void paint(RenderingContext c, ITextOutputDevice outputDevice, BlockBox box)
{
PdfContentByte cb = outputDevice.getCurrentPage();

public void paint(RenderingContext c, ITextOutputDevice outputDevice, BlockBox box) {
PdfWriter writer = outputDevice.getWriter();

PdfAcroForm acroForm = writer.getAcroForm();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package org.xhtmlrenderer.pdf;

import com.lowagie.text.pdf.PdfAcroForm;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfFormField;
import com.lowagie.text.pdf.PdfWriter;
import org.w3c.dom.Element;
import org.xhtmlrenderer.layout.LayoutContext;
Expand All @@ -12,18 +10,15 @@
import java.awt.*;

/**
* Created by IntelliJ IDEA.
* User: beck
* Date: 11/4/11
* Time: 12:42 PM
*/

public class EmptyReplacedElement extends AbstractFormField
{
private static final String FIELD_TYPE = "Hidden";

private int _width;
private int _height;
private final int _width;
private final int _height;

private Point _location = new Point(0, 0);

Expand All @@ -33,10 +28,7 @@ public EmptyReplacedElement(int width, int height)
_height = height;
}

public void paint(RenderingContext c, ITextOutputDevice outputDevice, BlockBox box)
{
PdfContentByte cb = outputDevice.getCurrentPage();

public void paint(RenderingContext c, ITextOutputDevice outputDevice, BlockBox box) {
PdfWriter writer = outputDevice.getWriter();

PdfAcroForm acroForm = writer.getAcroForm();
Expand Down

0 comments on commit 71d1c8f

Please sign in to comment.