This was fixed in jdk 7u72 ... so we'll keep this bit uncleaner version for a while ...

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1698006 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Beeker 2015-08-26 21:25:58 +00:00
parent 6831479112
commit 83ce870731
20 changed files with 21 additions and 21 deletions

View File

@ -19,6 +19,6 @@ package org.apache.poi.sl.usermodel;
public interface AutoShape<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends TextShape<S,P> {
}

View File

@ -19,7 +19,7 @@ package org.apache.poi.sl.usermodel;
public interface Background<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends Shape<S,P> {
FillStyle getFillStyle();
}

View File

@ -19,7 +19,7 @@ package org.apache.poi.sl.usermodel;
public interface ConnectorShape<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends SimpleShape<S,P> {
}

View File

@ -21,7 +21,7 @@ import java.awt.geom.GeneralPath;
public interface FreeformShape<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends AutoShape<S,P> {
/**
* Gets the shape path.

View File

@ -21,7 +21,7 @@ import java.awt.geom.Rectangle2D;
public interface GroupShape<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends Shape<S,P>, ShapeContainer<S,P>, PlaceableShape<S,P> {
/**

View File

@ -27,7 +27,7 @@ import org.apache.poi.util.Internal;
@Internal
public interface Line<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends AutoShape<S,P> {
}

View File

@ -19,7 +19,7 @@ package org.apache.poi.sl.usermodel;
public interface MasterSheet<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends Sheet<S,P> {
}

View File

@ -21,7 +21,7 @@ import java.util.List;
public interface Notes<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends Sheet<S,P> {
List<? extends List<P>> getTextParagraphs();
}

View File

@ -21,7 +21,7 @@ import java.awt.Insets;
public interface PictureShape<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends SimpleShape<S,P> {
/**
* Returns the picture data for this picture.

View File

@ -21,7 +21,7 @@ import java.awt.geom.Rectangle2D;
public interface PlaceableShape<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> {
ShapeContainer<S,P> getParent();

View File

@ -20,7 +20,7 @@ package org.apache.poi.sl.usermodel;
public interface Shape<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> {
ShapeContainer<S,P> getParent();

View File

@ -22,7 +22,7 @@ import java.util.List;
public interface ShapeContainer<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends Iterable<S> {
/**
* Returns an list containing all of the elements in this container in proper

View File

@ -25,7 +25,7 @@ import java.awt.Graphics2D;
*/
public interface Sheet<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends ShapeContainer<S,P> {
SlideShow<S,P> getSlideShow();

View File

@ -23,7 +23,7 @@ import org.apache.poi.sl.draw.geom.IAdjustableShape;
public interface SimpleShape<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends Shape<S,P>, IAdjustableShape, PlaceableShape<S,P> {
FillStyle getFillStyle();
LineDecoration getLineDecoration();

View File

@ -19,7 +19,7 @@ package org.apache.poi.sl.usermodel;
public interface Slide<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends Sheet<S,P> {
Notes<S,P> getNotes();
void setNotes(Notes<S,P> notes);

View File

@ -26,7 +26,7 @@ import org.apache.poi.sl.usermodel.PictureData.PictureType;
public interface SlideShow<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> {
Slide<S,P> createSlide() throws IOException;

View File

@ -19,7 +19,7 @@ package org.apache.poi.sl.usermodel;
public interface TableCell<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends TextShape<S,P> {
}

View File

@ -19,7 +19,7 @@ package org.apache.poi.sl.usermodel;
public interface TableShape<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends Shape<S,P>, PlaceableShape<S,P> {
// to be defined ...
}

View File

@ -19,6 +19,6 @@ package org.apache.poi.sl.usermodel;
public interface TextBox<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends AutoShape<S,P> {
}

View File

@ -21,7 +21,7 @@ import java.util.List;
public interface TextShape<
S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
P extends TextParagraph<S,P,?>
> extends SimpleShape<S,P>, Iterable<P> {
/**
* Vertical Text Types
@ -93,7 +93,7 @@ public interface TextShape<
/**
* @return the TextParagraphs for this text box
*/
List<? extends TextParagraph<S,P,? extends TextRun>> getTextParagraphs();
List<? extends TextParagraph<S,P,?>> getTextParagraphs();
/**
* @return text shape margin