Skip to content
This repository has been archived by the owner on May 14, 2022. It is now read-only.

Commit

Permalink
一些javadoc生成时的错误进行的再次调整, 以及1.0正式版完成
Browse files Browse the repository at this point in the history
  • Loading branch information
MoonLake committed May 14, 2017
1 parent f8b65f3 commit ef10f8b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ public List<Property> getProperties() {
/**
* 获取此 Minecraft 游戏档案指定名称的属性
*
* @param name 名称
* @return 属性
*/
public Property getProperty(String name) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ public void run() {
* 从指定游戏档案获取用户的皮肤源图片
*
* @param profile 游戏档案
* @return 皮肤源图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws MoonLakeSkinNotFoundException 如果游戏档案不存在皮肤则抛出异常
* @throws IllegalArgumentException 如果游戏档案对象为 {@code null} 则抛出异常
Expand Down Expand Up @@ -620,6 +621,7 @@ public void run() {
* 从指定游戏档案获取用户的皮肤头像图片
*
* @param profile 游戏档案
* @return 皮肤头像图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws MoonLakeSkinNotFoundException 如果游戏档案不存在皮肤则抛出异常
* @throws IllegalArgumentException 如果游戏档案对象为 {@code null} 则抛出异常
Expand All @@ -633,6 +635,7 @@ public BufferedImage getSkinHeadTextureByProfile(GameProfile profile) throws Moo
*
* @param profile 游戏档案
* @param zoom 放大倍数 (默认 8 倍, 64x64 像素)
* @return 皮肤头像图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws MoonLakeSkinNotFoundException 如果游戏档案不存在皮肤则抛出异常
* @throws IllegalArgumentException 如果游戏档案对象为 {@code null} 则抛出异常
Expand All @@ -647,6 +650,7 @@ public BufferedImage getSkinHeadTextureByProfile(GameProfile profile, int zoom)
* @param profile 游戏档案
* @param zoom 放大倍数 (默认 8 倍, 64x64 像素)
* @param helmet 是否绘制外层皮肤 (默认为 true)
* @return 皮肤头像图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws MoonLakeSkinNotFoundException 如果游戏档案不存在皮肤则抛出异常
* @throws IllegalArgumentException 如果游戏档案对象为 {@code null} 则抛出异常
Expand All @@ -661,6 +665,7 @@ public BufferedImage getSkinHeadTextureByProfile(GameProfile profile, int zoom,
* 从指定皮肤源文件获取用户的皮肤头像图片
*
* @param skinRawImage 皮肤源图片
* @return 皮肤头像图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws MoonLakeSkinNotFoundException 如果游戏档案不存在皮肤则抛出异常
* @throws IllegalArgumentException 如果皮肤源图片对象为 {@code null} 则抛出异常
Expand All @@ -674,6 +679,7 @@ public BufferedImage getSkinHeadTextureByRaw(BufferedImage skinRawImage) throws
*
* @param skinRawImage 皮肤源图片
* @param zoom 放大倍数 (默认 8 倍, 64x64 像素)
* @return 皮肤头像图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws MoonLakeSkinNotFoundException 如果游戏档案不存在皮肤则抛出异常
* @throws IllegalArgumentException 如果皮肤源图片对象为 {@code null} 则抛出异常
Expand All @@ -688,6 +694,7 @@ public BufferedImage getSkinHeadTextureByRaw(BufferedImage skinRawImage, int zoo
* @param skinRawImage 皮肤源图片
* @param zoom 放大倍数 (默认 8 倍, 64x64 像素)
* @param helmet 是否绘制外层皮肤 (默认为 true)
* @return 皮肤头像图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws MoonLakeSkinNotFoundException 如果游戏档案不存在皮肤则抛出异常
* @throws IllegalArgumentException 如果皮肤源图片对象为 {@code null} 则抛出异常
Expand Down Expand Up @@ -898,6 +905,7 @@ public void findSkinModel2DTextureByProfile(GameProfile profile, int zoom, boole
* @param profile 游戏档案
* @param zoom 放大倍数 (默认 2 倍, 32x64 像素)
* @param helmet 是否绘制外层皮肤 (默认为 true)
* @param slim 是否苗条
* @param callback 皮肤模型图片回调对象
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws IllegalArgumentException 如果游戏档案对象为 {@code null} 则抛出异常
Expand All @@ -913,6 +921,7 @@ public void findSkinModel2DTextureByProfile(GameProfile profile, int zoom, boole
* @param profile 游戏档案
* @param zoom 放大倍数 (默认 2 倍, 32x64 像素)
* @param helmet 是否绘制外层皮肤 (默认为 true)
* @param slim 是否苗条
* @param callback 皮肤模型图片回调对象
* @param async 是否异步
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
Expand Down Expand Up @@ -959,6 +968,7 @@ public void run() {
* 从指定游戏档案获取用户的皮肤模型 2D 图片
*
* @param profile 游戏档案
* @return 皮肤模型 2D 图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws MoonLakeSkinNotFoundException 如果游戏档案不存在皮肤则抛出异常
* @throws IllegalArgumentException 如果游戏档案对象为 {@code null} 则抛出异常
Expand All @@ -972,6 +982,7 @@ public BufferedImage getSkinModel2DTextureByProfile(GameProfile profile) throws
*
* @param profile 游戏档案
* @param zoom 放大倍数 (默认 2 倍, 32x64 像素)
* @return 皮肤模型 2D 图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws MoonLakeSkinNotFoundException 如果游戏档案不存在皮肤则抛出异常
* @throws IllegalArgumentException 如果游戏档案对象为 {@code null} 则抛出异常
Expand All @@ -986,6 +997,7 @@ public BufferedImage getSkinModel2DTextureByProfile(GameProfile profile, int zoo
* @param profile 游戏档案
* @param zoom 放大倍数 (默认 2 倍, 32x64 像素)
* @param helmet 是否绘制外层皮肤 (默认为 true)
* @return 皮肤模型 2D 图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws MoonLakeSkinNotFoundException 如果游戏档案不存在皮肤则抛出异常
* @throws IllegalArgumentException 如果游戏档案对象为 {@code null} 则抛出异常
Expand All @@ -1001,6 +1013,7 @@ public BufferedImage getSkinModel2DTextureByProfile(GameProfile profile, int zoo
* @param zoom 放大倍数 (默认 2 倍, 32x64 像素)
* @param helmet 是否绘制外层皮肤 (默认为 true)
* @param slim 是否苗条
* @return 皮肤模型 2D 图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws MoonLakeSkinNotFoundException 如果游戏档案不存在皮肤则抛出异常
* @throws IllegalArgumentException 如果游戏档案对象为 {@code null} 则抛出异常
Expand All @@ -1015,6 +1028,7 @@ public BufferedImage getSkinModel2DTextureByProfile(GameProfile profile, int zoo
* 从指定皮肤源文件获取用户的皮肤模型 2D 图片
*
* @param skinRawImage 皮肤源图片
* @return 皮肤模型 2D 图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws IllegalArgumentException 如果皮肤源图片对象为 {@code null} 则抛出异常
*/
Expand All @@ -1027,6 +1041,7 @@ public BufferedImage getSkinModel2DTextureByRaw(BufferedImage skinRawImage) thro
*
* @param skinRawImage 皮肤源图片
* @param zoom 放大倍数 (默认 2 倍, 32x64 像素)
* @return 皮肤模型 2D 图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws IllegalArgumentException 如果皮肤源图片对象为 {@code null} 则抛出异常
*/
Expand All @@ -1040,6 +1055,7 @@ public BufferedImage getSkinModel2DTextureByRaw(BufferedImage skinRawImage, int
* @param skinRawImage 皮肤源图片
* @param zoom 放大倍数 (默认 2 倍, 32x64 像素)
* @param helmet 是否绘制外层皮肤 (默认为 true)
* @return 皮肤模型 2D 图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws IllegalArgumentException 如果皮肤源图片对象为 {@code null} 则抛出异常
*/
Expand All @@ -1054,6 +1070,7 @@ public BufferedImage getSkinModel2DTextureByRaw(BufferedImage skinRawImage, int
* @param zoom 放大倍数 (默认 2 倍, 32x64 像素)
* @param helmet 是否绘制外层皮肤 (默认为 true)
* @param slim 是否苗条
* @return 皮肤模型 2D 图片
* @throws MoonLakeSkinException 如果皮肤错误则抛出异常
* @throws IllegalArgumentException 如果皮肤源图片对象为 {@code null} 则抛出异常
*/
Expand Down

0 comments on commit ef10f8b

Please sign in to comment.