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 net.firepush.adnet | |
| { | |
| /** | |
| * ... | |
| * @author marinat | |
| */ | |
| import flash.external.ExtensionContext; | |
| public class FirePushExtension |
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 net.firepush.adnet; | |
| import com.adobe.fre.FREContext; | |
| import com.adobe.fre.FREExtension; | |
| public class FirePushExtension implements FREExtension { | |
| @Override | |
| public FREContext createContext(String arg0) { | |
| return new FirePushContext(); | |
| } |
NewerOlder