Skip to content

Commit

Permalink
Whitespace fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Debert committed Apr 10, 2010
1 parent 44f8485 commit 69ab4db
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/br/com/stimuli/loading/loadingtypes/LoadingItem.as
Expand Up @@ -484,26 +484,31 @@ package br.com.stimuli.loading.loadingtypes {
public function isText(): Boolean{
return false;
}

/** Returns true if content is of type xml.
*/
public function isXML(): Boolean{
return false;
}

/** Returns true if content is of type image.
*/
public function isImage() : Boolean{
return false;
}

/** Returns true if content is of type movieclip.
*/
public function isSWF() : Boolean{
return false;
}

/** Returns true if uses a Loader instance internally. (such as swfs and images).
*/
public function isLoader(): Boolean{
return false;
}

/** Returns true if this loading type should allow it's content to be accessed as soon as the server response starts. Should be true for sound and video types.
*/
public function isStreamable() : Boolean{
Expand Down

0 comments on commit 69ab4db

Please sign in to comment.