StoryResource.java :  » Sound-Audio-Voice » cs160-educal » edu » cs » cs160 » storytime » Android Open Source

Android Open Source » Sound Audio Voice » cs160 educal 
cs160 educal » edu » cs » cs160 » storytime » StoryResource.java
package edu.cs.cs160.storytime;

public class StoryResource {
  private String resourceName;
  private int soundResource;
  private int textResource;
  
  public StoryResource(String name, int sound, int text) {
    this.soundResource = sound;
    this.textResource = text;
    this.resourceName = name;
  }
  
  public int getSound() {
    return soundResource;
  }
  
  public int getText() {
    return textResource;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.