Project

General

Profile

« Previous | Next » 

Revision b329f352

Added by Leszek Koltunski almost 8 years ago

Improvements for Javadoc

View differences:

src/main/java/org/distorted/library/EffectList.java
4 4

  
5 5
///////////////////////////////////////////////////////////////////////////////////////////////////
6 6

  
7
public abstract class EffectList 
7
abstract class EffectList
8 8
  {
9 9
  protected static final int DEFAULT_NUM_EFFECTS = 5;
10 10
  
......
84 84

  
85 85
  void addListener(EffectListener el)
86 86
    {
87
    if( mNumListeners==0 ) mListeners = new Vector<EffectListener>(2,2);  
87
    if( mNumListeners==0 ) mListeners = new Vector<>(2,2);
88 88
   
89 89
    mListeners.add(el);
90 90
    mNumListeners++;
......
238 238
      indexes[g] = -1;  
239 239
      }
240 240
   
241
    String ret= new String();
242
    ret = "(";
243
   
241
    String ret="(";
244 242
    int f;
245 243
   
246 244
    for(int g=0; g<max; g++) 

Also available in: Unified diff