Access using qualified this

This commit is contained in:
yueh 2015-12-24 02:10:22 +01:00
parent a6ee559723
commit 4a486673f6
5 changed files with 28 additions and 28 deletions

View file

@ -691,7 +691,7 @@ public abstract class AEBaseBlock extends Block implements IAEFeature
public boolean isFullSize() public boolean isFullSize()
{ {
return isFullSize; return this.isFullSize;
} }
public boolean setFullSize( final boolean isFullSize ) public boolean setFullSize( final boolean isFullSize )
@ -708,12 +708,12 @@ public abstract class AEBaseBlock extends Block implements IAEFeature
public Optional<String> getFeatureSubName() public Optional<String> getFeatureSubName()
{ {
return featureSubName; return this.featureSubName;
} }
public boolean isInventory() public boolean isInventory()
{ {
return isInventory; return this.isInventory;
} }
public void setInventory( final boolean isInventory ) public void setInventory( final boolean isInventory )

View file

@ -628,12 +628,12 @@ public class ModelGenerator
public IAESprite getOverrideBlockTexture() public IAESprite getOverrideBlockTexture()
{ {
return overrideBlockTexture; return this.overrideBlockTexture;
} }
public IBlockAccess getBlockAccess() public IBlockAccess getBlockAccess()
{ {
return blockAccess; return this.blockAccess;
} }
public void setBlockAccess( final IBlockAccess blockAccess ) public void setBlockAccess( final IBlockAccess blockAccess )
@ -643,7 +643,7 @@ public class ModelGenerator
public boolean isRenderAllFaces() public boolean isRenderAllFaces()
{ {
return renderAllFaces; return this.renderAllFaces;
} }
public void setRenderAllFaces( final boolean renderAllFaces ) public void setRenderAllFaces( final boolean renderAllFaces )
@ -653,7 +653,7 @@ public class ModelGenerator
public int getUvRotateBottom() public int getUvRotateBottom()
{ {
return uvRotateBottom; return this.uvRotateBottom;
} }
public int setUvRotateBottom( final int uvRotateBottom ) public int setUvRotateBottom( final int uvRotateBottom )
@ -664,7 +664,7 @@ public class ModelGenerator
public int getUvRotateEast() public int getUvRotateEast()
{ {
return uvRotateEast; return this.uvRotateEast;
} }
public int setUvRotateEast( final int uvRotateEast ) public int setUvRotateEast( final int uvRotateEast )
@ -675,7 +675,7 @@ public class ModelGenerator
public int getUvRotateNorth() public int getUvRotateNorth()
{ {
return uvRotateNorth; return this.uvRotateNorth;
} }
public int setUvRotateNorth( final int uvRotateNorth ) public int setUvRotateNorth( final int uvRotateNorth )
@ -686,7 +686,7 @@ public class ModelGenerator
public int getUvRotateSouth() public int getUvRotateSouth()
{ {
return uvRotateSouth; return this.uvRotateSouth;
} }
public int setUvRotateSouth( final int uvRotateSouth ) public int setUvRotateSouth( final int uvRotateSouth )
@ -697,7 +697,7 @@ public class ModelGenerator
public int getUvRotateTop() public int getUvRotateTop()
{ {
return uvRotateTop; return this.uvRotateTop;
} }
public int setUvRotateTop( final int uvRotateTop ) public int setUvRotateTop( final int uvRotateTop )
@ -708,7 +708,7 @@ public class ModelGenerator
public int getUvRotateWest() public int getUvRotateWest()
{ {
return uvRotateWest; return this.uvRotateWest;
} }
public int setUvRotateWest( final int uvRotateWest ) public int setUvRotateWest( final int uvRotateWest )
@ -719,7 +719,7 @@ public class ModelGenerator
public double getRenderMinX() public double getRenderMinX()
{ {
return renderMinX; return this.renderMinX;
} }
public void setRenderMinX( final double renderMinX ) public void setRenderMinX( final double renderMinX )
@ -729,7 +729,7 @@ public class ModelGenerator
public double getRenderMinY() public double getRenderMinY()
{ {
return renderMinY; return this.renderMinY;
} }
public void setRenderMinY( final double renderMinY ) public void setRenderMinY( final double renderMinY )
@ -739,7 +739,7 @@ public class ModelGenerator
public double getRenderMinZ() public double getRenderMinZ()
{ {
return renderMinZ; return this.renderMinZ;
} }
public void setRenderMinZ( final double renderMinZ ) public void setRenderMinZ( final double renderMinZ )
@ -749,7 +749,7 @@ public class ModelGenerator
public double getRenderMaxX() public double getRenderMaxX()
{ {
return renderMaxX; return this.renderMaxX;
} }
public void setRenderMaxX( final double renderMaxX ) public void setRenderMaxX( final double renderMaxX )
@ -759,7 +759,7 @@ public class ModelGenerator
public double getRenderMaxY() public double getRenderMaxY()
{ {
return renderMaxY; return this.renderMaxY;
} }
public void setRenderMaxY( final double renderMaxY ) public void setRenderMaxY( final double renderMaxY )
@ -769,7 +769,7 @@ public class ModelGenerator
public double getRenderMaxZ() public double getRenderMaxZ()
{ {
return renderMaxZ; return this.renderMaxZ;
} }
public void setRenderMaxZ( final double renderMaxZ ) public void setRenderMaxZ( final double renderMaxZ )
@ -779,7 +779,7 @@ public class ModelGenerator
public boolean isFlipTexture() public boolean isFlipTexture()
{ {
return flipTexture; return this.flipTexture;
} }
public void setFlipTexture( final boolean flipTexture ) public void setFlipTexture( final boolean flipTexture )
@ -789,7 +789,7 @@ public class ModelGenerator
public EnumSet<EnumFacing> getRenderFaces() public EnumSet<EnumFacing> getRenderFaces()
{ {
return renderFaces; return this.renderFaces;
} }
public void setRenderFaces( final EnumSet<EnumFacing> renderFaces ) public void setRenderFaces( final EnumSet<EnumFacing> renderFaces )

View file

@ -49,7 +49,7 @@ public class RenderBlocksWorkaround extends ModelGenerator
public EnumSet<EnumFacing> getFaces() public EnumSet<EnumFacing> getFaces()
{ {
return faces; return this.faces;
} }
public void setFaces( final EnumSet<EnumFacing> faces ) public void setFaces( final EnumSet<EnumFacing> faces )

View file

@ -42,32 +42,32 @@ public class SMFace
public int getColor() public int getColor()
{ {
return color; return this.color;
} }
public EnumFacing getFace() public EnumFacing getFace()
{ {
return face; return this.face;
} }
public Vector3f getFrom() public Vector3f getFrom()
{ {
return from; return this.from;
} }
public Vector3f getTo() public Vector3f getTo()
{ {
return to; return this.to;
} }
public TextureAtlasSprite getSpite() public TextureAtlasSprite getSpite()
{ {
return spite; return this.spite;
} }
public boolean isEdge() public boolean isEdge()
{ {
return isEdge; return this.isEdge;
} }
} }

View file

@ -164,7 +164,7 @@ public class CraftingLinkNexus
public CraftingLink getRequest() public CraftingLink getRequest()
{ {
return req; return this.req;
} }
public void setRequest( final CraftingLink req ) public void setRequest( final CraftingLink req )