Created
March 22, 2014 14:33
-
-
Save volgar1x/9708073 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.heat.dofus.datacenter; | |
import com.google.common.collect.ImmutableSet; | |
import lombok.NonNull; | |
import lombok.Value; | |
import lombok.experimental.Builder; | |
@Value(staticConstructor = "newD2oClass") | |
@Builder(builderClassName = "Builder", builderMethodName = "newBuilder") | |
public class D2oClass { | |
int id; | |
@NonNull String name; | |
@NonNull String pkg; | |
@NonNull ImmutableSet<D2oField> fields; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment