コード例 #1
0
ファイル: CreaturePosture.java プロジェクト: bacta/swg
 @Override
 public void reload() {
   synchronized (this) {
     postures.clear();
     load();
   }
 }
コード例 #2
0
ファイル: VertexData.java プロジェクト: unknownloner/Caustic
 /** Clears all the vertex data. */
 public void clear() {
   indices.clear();
   attributes.clear();
   nameToIndex.clear();
 }
コード例 #3
0
ファイル: ObjectCounter.java プロジェクト: caelum/S-Space
 /** Resets the counts for all objects. The size of {@link #items()} will be 0 after this call. */
 public void reset() {
   counts.clear();
   sum = 0;
 }