이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
Veronie
/
BggToolAnother
보기
1
좋아요
0
포크
0
코드
이슈
13
풀 리퀘스트
1
릴리즈
0
위키
활동
소스 검색
Towards result output for nandeck...
pull/16/head
veronie
4 년 전
부모
ee3e04c3eb
커밋
94ecc66ae3
4개의 변경된 파일
과
22개의 추가작업
그리고
8개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+12
-0
xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/IdString.java
+5
-4
xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/Recommendation.java
+1
-0
xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/Thing.java
+4
-4
xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/ThingDetails.java
+ 12
- 0
xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/IdString.java
파일 보기
@@ -0,0 +1,12 @@
package xyz.veronie.bgg.result;
/// Holds an id and its string representation, for example for Family, Extension, Mechanic, or Category.
public class IdString {
int id;
String string;
public IdString(int id, String string) {
this.id = id;
this.string = string;
}
}
+ 5
- 4
xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/Recommendation.java
파일 보기
@@ -1,8 +1,9 @@
package xyz.veronie.bgg.result;
public enum Recommendation {
N, //
not supported
P, // not recommended
R, //
r
ecommended
B //
best
N, //
(N)onplayable
P, //
(P)layable,
not recommended
R, //
(R)
ecommended
B //
(B)est with...
}
+ 1
- 0
xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/Thing.java
파일 보기
@@ -164,6 +164,7 @@ public class Thing {
*
* @return
*/
// TODO: rewrite: order isn't important, column names are
public String toResultTxtLine() {
StringBuilder str = new StringBuilder();
final String emptyItem = "\"\",";
+ 4
- 4
xyz.veronie.bgg.ui/src/xyz/veronie/bgg/result/ThingDetails.java
파일 보기
@@ -23,12 +23,12 @@ public class ThingDetails {
Float stddev;
Float median;
String image;
I
nteger
category;
I
nteger
mechanic;
I
dString[]
category;
I
dString[]
mechanic;
String comment;
Recommendation[] players; // 1 to 20
String description;
I
nteger
expansion;
I
dString[]
expansion;
Integer basegameId;
Integer reimplementId;
String reimplement_name;
@@ -44,6 +44,6 @@ public class ThingDetails {
Float price;
Integer expansions;
String domain;
String family;
Id
String
[]
family;
Float age_poll;
}
쓰기
미리보기
불러오는 중...
취소
저장