text stringlengths 4 1.04M |
|---|
import libc;
import list;
import types;
import string;
# [ ] Add '.dispose' methods to dispose of memory
# AST tag defintions
# -----------------------------------------------------------------------------
# AST tags are just an enumeration of all possible nodes.
let TAG_INTEGER : int = 1; # Inte... |
package com.playata.application.data.advertisment
{
import com.playata.application.data.GameUtil;
import com.playata.application.data.dataobject.DOCustomBannerAdvertisment;
import com.playata.application.data.user.User;
import com.playata.application.platform.ServerInfo;
import com.playata.framework.appl... |
package com.propertycross.air.presentationModels
{
import com.propertycross.air.controllers.FavouritesController;
import com.propertycross.air.events.FavouriteEvent;
import com.propertycross.air.models.Property;
import flash.events.Event;
[Event(name="addFavourite", type="com.propertycross.air.eve... |
package com.swfwire.decompiler.abc.instructions
{
import com.swfwire.decompiler.abc.*;
public class Instruction_debugfile implements IInstruction
{
//String constant pool
public var index:uint;
public function Instruction_debugfile(index:uint = 0)
{
this.index = index;
}
}
} |
package com.dankokozar.events
{
import flash.events.Event;
public class LoginEvent extends Event
{
public var userName:String;
public var password:String;
public function LoginEvent(userName:String, password:String)
{
super("login");
this.userName = userName;
this.password = password;
}
}
} |
;(advapi32.as)
#ifdef __hsp30__
#ifndef __ADVAPI32__
#define global __ADVAPI32__
#uselib "ADVAPI32.DLL"
#define global AbortSystemShutdown AbortSystemShutdownA
#func global AbortSystemShutdownA "AbortSystemShutdownA" sptr
#func global AbortSystemShutdownW "AbortSystemShutdownW" wptr
#func global AccessChe... |
namespace array
extern create '__arrayCreate'
extern static '__arrayStatic'
extern push '__arrayPush'
extern pop '__arrayPop'
extern shift '__arrayShift'
extern unshift '__arrayUnshift'
extern resize '__arrayResize'
extern slice '__arraySlice'
extern write '__arrayWrite'
extern fill '__arrayFill'
extern find... |
// =================================================================================================
//
// Starling Framework - Particle System Extension
// Copyright 2012 Gamua OG. All Rights Reserved.
//
// This program is free software. You can redistribute and/or modify it
// in accordance with the terms of the acc... |
package game.view.effects
{
import game.objects.MirariType;
public class WeaknessEffectIcon extends BaseMirariEffectIcon
{
public static const MIRARI_TYPE:int = 4;
public function WeaknessEffectIcon()
{
_iconClass = "asset.game.TargetingAsset";
supe... |
/**
* Apache License
* Version 2.0, January 2004
* http://www.apache.org/licenses/
*
* TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
*
* 1. Definitions.
*
* "License" shall mean the terms and conditio... |
package cc.gullinbursti.math.discrete.categorytheory {
//] includes [!]>
//]=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~.
import cc.gullinbursti.math.BasicMath;
//]~=~=~=~=~=~=~=~=~=~=~=~=~=~[]~=~=~=~=~=~=~=~=~=~=~=~=~=~
/**
*
* @author Gullinbursti
*/
// <[!] class delaration [¡]>
public class BasicCategoryTheor... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
package jp.coremind.view.builder.element
{
import jp.coremind.utility.Log;
import jp.coremind.view.abstract.IBox;
import jp.coremind.view.implement.starling.component.ListContainer;
import jp.coremind.view.layout.IListLayout;
import jp.coremind.view.layout.Layout;
public class ListContainer... |
package com.HAL.sockets.events {
import flash.events.Event;
public class CloseHandlerEvent extends Event {
public function CloseHandlerEvent(type:String, evnt:Event, bubbles:Boolean=true, cancelable:Boolean=false) {
super(type, bubbles, cancelable);
this.evnt = evnt;
}
public sta... |
package eu.claudius.iacob.ui.components {
public class Constants {
public function Constants() {}
public static const DATA_ITEM : String = 'dataItem';
public static const ITEM_UID : String = 'uid';
public static const STAGE_X : String = 'stageX';
public static const STAGE_Y : String = 'stageY';
public ... |
/**
* Copyright (c) The PyAMF Project.
* See LICENSE.txt for details.
*/
package org.pyamf.examples.addressbook.components
{
import flash.display.DisplayObject;
import flash.events.MouseEvent;
import mx.controls.DataGrid;
import mx.core.FlexGlobals;
import mx.events.FlexEvent;
import mx.managers.PopUpManager;... |
package com.ankamagames.dofus.network.messages.game.context.roleplay.houses
{
import com.ankamagames.dofus.network.ProtocolTypeManager;
import com.ankamagames.dofus.network.types.game.house.HouseInstanceInformations;
import com.ankamagames.jerakine.network.CustomDataWrapper;
import com.ankamagames.jera... |
import GUI.fox.aswing.ComboBoxEditor;
import GUI.fox.aswing.Component;
import GUI.fox.aswing.EventDispatcher;
import GUI.fox.aswing.JTextField;
import GUI.fox.aswing.UIManager;
/**
* Default to use a JTextField to be the editor. Just works with string values well.
* @author iiley
*/
class GUI.fox.aswing.DefaultCom... |
/**
* Created by Max Rozdobudko on 4/10/15.
*/
package skein.utils
{
public class VectorUtil
{
public static function copy(from: *, to: *): void {
to.length = 0;
if (from == null) {
return;
}
for (var i:int = 0; i < from.length; i++) {
to[i] = from[i];
... |
[EntryPoint]
class Title : CoroutineScene {
Skin@ skin;
Font@ fontLatin, font32, font64;
Image@ imgWhite, imgDxLib, imgBoost, imgFreeType, imgAngelScript, imgSeaurchin;
Image@ imgCursorMenu;
Container@ cntLogos;
bool introWorking;
void Initialize() {
LoadResources();
AddSprite(Sprite(imgWhite));... |
package kabam.rotmg.messaging.impl.data {
import flash.utils.IDataOutput;
public class ForgeItem {
public function ForgeItem() {
super();
}
public var objectType_:int;
public var slotId_:int;
public var included_:Boolean;
public function parseFromInput(data:IDataOutput):void {
... |
/*
* Copyright (c) 2006-2007 Erin Catto http://www.gphysics.com
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
* Permission is granted to anyone to use this software for any purpose,... |
package {
import flash.display.*;
public class main extends Sprite {
public function main() {
// [[inject:jinx]]
include 'partials/bar.as';
$memPanel();
}}}
|
package nid.xfl.compiler.swf.tags
{
import nid.xfl.compiler.swf.SWFData;
public class TagImportAssets2 extends TagImportAssets implements ITag
{
public static const TYPE:uint = 71;
public function TagImportAssets2() {}
override public function parse(data:SWFData, length:uint, version:uint, async:Boolean... |
/**Created by the LayaAirIDE,do not modify.*/
package ui.mainGame.Items {
import laya.ui.*;
import laya.display.*;
public class OutputBottomItemUI extends View {
public var downImg:Image;
public var backImg:Image;
public var valueImg:Image;
public var huEffImg:Image;
public var chiMark:Image;
public va... |
package org.yellcorp.lib.net.batchloader
{
import org.yellcorp.lib.net.batchloader.adapters.BatchLoaderItem;
import flash.net.URLRequest;
public interface BatchLoaderItemFactory
{
function createItem(request:URLRequest):BatchLoaderItem;
}
}
|
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
package com.bs.amg.events
{
import flash.events.Event;
public class AMGEvent extends Event
{
/**
* Данные графа сохранены в облаке
*/
public static const GRAPH_SAVED : String = 'graphSaved';
/**
* Данные графа в виде картинки сохранены
*/
public static const IMAGE_SAVED : String = 'ima... |
/**
* Copyright (c) 2014, Fernando Bevilacqua
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this
* list o... |
/*
* _________ __ __
* _/ / / /____ / /________ ____ ____ ___
* _/ / / __/ -_) __/ __/ _ `/ _ `/ _ \/ _ \
* _/________/ \__/\__/\__/_/ \_,_/\_, /\___/_//_/
* /___/
*
* Tetragon : Game Engine for multi-platform ActionScript projects.
* http://w... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package PublicClass {
public class PublicClass {
var array:Array;
var boolean:Boolean;
var da... |
package com.ankamagames.dofus.network.messages.game.character.stats
{
import com.ankamagames.jerakine.network.CustomDataWrapper;
import com.ankamagames.jerakine.network.ICustomDataInput;
import com.ankamagames.jerakine.network.ICustomDataOutput;
import com.ankamagames.jerakine.network.INetworkMessage;
... |
# Declare 3 static slots.
let a: int32 = 621;
let b: uint32 = 253232;
let c: bool = true;
let m: float32 = 410;
# Declare 2 mutable static slots.
let mut d: uint128 = 2439529590252;
let mut e: float64 = 2.0;
# Declare some modules containing static slots.
module extra {
let a: bool = true;
let b: bool = false... |
/*
* VERSION:3.0
* DATE:2014-10-15
* ACTIONSCRIPT VERSION: 3.0
* UPDATES AND DOCUMENTATION AT: http://www.wdmir.net
* MAIL:mir3@163.com
*/
package com.adobe.ac.mxeffects
{
import flash.geom.Matrix;
public class Triangle
{
public var p0 : SandyPoint;
public var p1 : SandyPoint;
public var p2 : SandyPoi... |
package serverProto.talent
{
import com.netease.protobuf.Message;
import com.netease.protobuf.fieldDescriptors.RepeatedFieldDescriptor$TYPE_MESSAGE;
import com.netease.protobuf.WireType;
import com.netease.protobuf.WritingBuffer;
import com.netease.protobuf.WriteUtils;
import flash.utils.IDataInput;
... |
package utils.string
{
/**
* Returns the truncated string with an appended ellipsis (...) if the length of <code>str</code> is greater than <code>len</code>.
* If the length of <code>str</code> is less than or equal to <code>len</code>, the method returns <code>str</code> unaltered.
* @param str the string to tr... |
table bed8Attrs
"Items with thin (outer) and/or thick (inner) regions and an arbitrary set of attributes"
(
string chrom; "Reference sequence chromosome or scaffold"
uint chromStart; "Start position in chromosome"
uint chromEnd; "End position in chromosome"
string name; "Name of ite... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
/*
* Copyright 2017 Tua Rua Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... |
package
{
import com.catalystapps.gaf.data.GAFBundle;
import com.catalystapps.gaf.display.GAFTextField;
import flash.text.TextFormat;
import starling.events.TouchPhase;
import starling.events.Touch;
import starling.events.TouchEvent;
import starling.display.Sprite;
import com.catalystapps.gaf.core.ZipToGAFAs... |
/*
* Copyright 2015 Kokorin Denis
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed t... |
package com.ankamagames.dofus.network.messages.game.guild
{
import com.ankamagames.dofus.network.types.game.context.roleplay.GuildInformations;
import com.ankamagames.jerakine.network.CustomDataWrapper;
import com.ankamagames.jerakine.network.ICustomDataInput;
import com.ankamagames.jerakine.network.IC... |
/**
* Copyright (c) 2014, Fernando Bevilacqua
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this
* list o... |
package twod
{
public class ColorDecoder
{
private var hexes: String = '0123456789abcdef';
private var ihexes: Object;
private function makeIHexes(): Object
{
var result: Object = {};
for(var i: int = 0;i < hexes.length; ++i) {
var c: String = hexes.charAt(i);
result[c] = i;
c = c.toUpperC... |
// Copyright (c) 2014 www.9miao.com All rights reserved.
package dUI
{
/**
* ...
* @author dym
*/
public class dUIButtonH3 extends dUIButtonBase
{
public function dUIButtonH3( pFather:dUIImage )
{
super( pFather );
m_nObjType = dUISystem.GUIOBJ_TYPE_BUTTON;
}
override protected function Create... |
package away3d.animators.states
{
import away3d.animators.ParticleAnimator;
import away3d.animators.data.AnimationRegisterCache;
import away3d.animators.data.AnimationSubGeometry;
import away3d.animators.data.ColorSegmentPoint;
import away3d.animators.nodes.ParticleSegmentedColorNode;
import away3d.arcane;
impor... |
/*
Copyright aswing.org, see the LICENCE.txt.
*/
package org.aswing.skinbuilder{
public class SkinSplitPaneDividerBackground extends OrientableComponentBackground{
override protected function getPropertyPrefix():String {
return "SplitPane.divider.";
}
}
} |
class QRCodeGlue {
public static function Lsr( number:Number, shiftBy:Number ):Number {
return number >>> shiftBy;
}
public static function Lsl function( number:Number, shiftBy:Number ):Number {
return number << shiftBy;
}
} |
package com.swfwire.decompiler.data.swf9.tags
{
import com.swfwire.decompiler.data.swf.SWF;
import com.swfwire.decompiler.SWFByteArray;
import com.swfwire.decompiler.data.swf.tags.SWFTag;
public class StartSound2Tag extends SWFTag
{
}
} |
package user.data
{
import com.netease.protobuf.UInt64;
public class GuildInfoData
{
public var guildId:UInt64 = null;
public var guildName:String = null;
public var guildLvl:int = 0;
public var guildMemberIdentity:int = 0;
public var needYu... |
/**
* Apache License
* Version 2.0, January 2004
* http://www.apache.org/licenses/
*
* TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
*
* 1. Definitions.
*
* "License" shall mean the terms and conditio... |
///////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2008-2009 Vincent Petithory - http://blog.lunar-dev.net/
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to d... |
package fairygui
{
import flash.events.Event;
import flash.geom.Point;
import fairygui.event.GTouchEvent;
public class GScrollBar extends GComponent
{
private var _grip:GObject;
private var _arrowButton1:GObject;
private var _arrowButton2:GObject;
private var _bar:GObject;
private var _target:ScrollP... |
package org.asusual.pdfcase {
/**
* PDFcase is the library to generate PDF files on client side with the Adobe Flash Player 10.
* Code is base on the Java PDFjet http://pdfjet.com
*
* @author Dmitry Bezverkhiy
* @version 0.1
*
*/
public interface ICoreFont {
function getBBoxLLx() : ... |
package Ankama_Social
{
import Ankama_Common.Common;
import Ankama_Social.ui.AddFriendWindow;
import Ankama_Social.ui.Alliance;
import Ankama_Social.ui.AllianceAreas;
import Ankama_Social.ui.AllianceCard;
import Ankama_Social.ui.AllianceCreator;
import Ankama_Social.ui.AllianceFights;
i... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
/******************************************************************************
* Spine Runtimes License Agreement
* Last updated January 1, 2020. Replaces all prior versions.
*
* Copyright (c) 2013-2020, Esoteric Software LLC
*
* Integration of the Spine Runtimes into software or otherwise creating
* der... |
/**
* DATA STRUCTURES FOR GAME PROGRAMMERS
* Copyright (c) 2007 Michael Baczynski, http://www.polygonal.de
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, i... |
package kabam.rotmg.assets {
import mx.core.*;
[Embed(source="EmbeddedAssets_monsterTank2Embed_.dat", mimeType="application/octet-stream")]
public class EmbeddedAssets_monsterTank2Embed_ extends ByteArrayAsset {
public function EmbeddedAssets_monsterTank2Embed_() {
super();
}
}
}
|
package kabam.rotmg.assets {
import mx.core.ByteArrayAsset;
[Embed(source="innerWorkingsObjects.txt", mimeType="application/octet-stream")]
public class innerWorkingsObjects extends ByteArrayAsset {
public function innerWorkingsObjects() {
super();
}
}
} |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
/**
* Copyright (C) 2008 Darshan Sawardekar.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable... |
/*
CASA Lib for ActionScript 3.0
Copyright (c) 2011, Aaron Clinger & Contributors of CASA Lib
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the abo... |
import com.GameInterface.DistributedValueBase;
import flash.geom.Point;
class com.fox.ResChanger
{
public static function main():Void
{
if (!DistributedValueBase.GetDValue("ResChanger_Loaded"))
{
var target:Array = DistributedValueBase.GetDefaultDValue("ResChanger_Resolution").split(",");
var mode = Number... |
////////////////////////////////////////////////////////////////////////////////
// Copyright 2016 Prominic.NET, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http:/... |
package suites.testObjects.view {
import flash.display.Sprite;
import flash.events.Event;
public class MediatorSpriteDispacherChild extends Sprite {
public function MediatorSpriteDispacherChild() {
}
public function sendTestEvent():void {
dispatchEvent(new Event("test"));
}
}
}
|
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
package com.smbc.data
{
import com.smbc.messageBoxes.MenuBoxItems;
public class MapDifficulty
{
private static const _EASY:Array = [ 0, MenuBoxItems.EASY ];
private static const _NORMAL:Array = [ 1, MenuBoxItems.NORMAL ];
private static const _HARD:Array = [ 2, MenuBoxItems.HARD ];
private static const IND_... |
package org.flemit.bytecode
{
public class MultipleNamespaceNameLate extends Multiname
{
private var _namespaceSet : NamespaceSet;
public function MultipleNamespaceNameLate(namespaceSet : NamespaceSet, kind : uint = MultinameKind.MULTINAME_LATE)
{
super(kind);
_namespaceSet = namespace... |
package
{
import feathers.examples.youtube.Main;
import flash.display.Loader;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageOrientation;
import flash.display.StageScaleMode;
import flash.display3D.Context3DProfile;
import flash.display3D.Context3DRenderMode;
import fl... |
package io.arkeus.tiled {
/**
* A container that holds all tilesets within the map.
*/
public class TiledTilesets {
/** A map from tileset tileset name to tileset. */
public var tilesets:Object = {};
/** A vector containing all tilesets in the order defined. */
public var tilesetsVector:Vector.<Ti... |
package gs.remoting
{
import flash.events.ErrorEvent;
import flash.events.IOErrorEvent;
import flash.events.NetStatusEvent;
import flash.events.SecurityErrorEvent;
import flash.net.NetConnection;
import flash.net.Responder;
import flash.utils.Dictionary;
import flash.utils.clearInterval;
import flash.utils.cle... |
// =================================================================================================
//
// Starling Framework
// Copyright 2011-2014 Gamua. All Rights Reserved.
//
// This program is free software. You can redistribute and/or modify it
// in accordance with the terms of the accompanying license agreemen... |
package views
{
import mx.core.BitmapAsset;
[ExcludeClass]
[Embed(_resolvedSource="C:/Users/Oliver/Adobe Flash Builder 4.6/FlexGrocer/src/assets/dairy_milk.jpg", _column="1", source="assets/dairy_milk.jpg", exportSymbol="views.ShoppingView__embed_mxml_assets_dairy_milk_jpg_618279371", _line="733", _pathsep="true", _... |
package com.ankamagames.dofus.network.types.game.context.roleplay
{
import com.ankamagames.dofus.network.types.game.guild.GuildEmblem;
import com.ankamagames.jerakine.network.ICustomDataInput;
import com.ankamagames.jerakine.network.ICustomDataOutput;
import com.ankamagames.jerakine.network.INetworkTyp... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
class A {
string g;
string &Test()
{
return g;
}
}
|
package as3 {
import flash.display.MovieClip;
import flash.events.*;
import flash.desktop.NativeApplication;
import flash.desktop.SystemIdleMode;
import flash.system.System;
public class GSMatch extends GameScene {
var playerPos1:Object = {x:31.5,y:33.85};
var playerPos2:Object = {x:255.7,y:33.85};
var... |
package org.xfltools.xfldom
{
/**
* ...
* @author Tim Diggle
*/
public class DOMSymbolItem implements IDOMComponent
{
private var _xml:XML;
private var _name:String;
public function instantiate():DOMSymbolInstance
{
var result:DOMSymbolInstance = new DOMSymbolInstance();
result.fromSymbo... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
/*
Feathers
Copyright 2012-2015 Joshua Tynjala. All Rights Reserved.
This program is free software. You can redistribute and/or modify it in
accordance with the terms of the accompanying license agreement.
*/
package feathers.display
{
import feathers.core.IValidating;
import feathers.core.ValidationQueue;
import f... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF li... |
package app.part.property
{
import app.Config;
import app.data.property.BasicPropertyData;
import app.message.MessageCenter;
import mx.core.UIComponent;
import mx.events.FlexEvent;
import spark.components.TextInput;
public class BasicProperty extends PropertyBase
{
private var _data:BasicPropertyData;
... |
package kabam.rotmg.core.signals {
import org.osflash.signals.Signal;
public class SetupDomainSecuritySignal extends Signal {
}
}//package kabam.rotmg.core.signals
|
/**
* Copyright (c) 2013, Fernando Bevilacqua
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this
* list o... |
package com.citrusengine.objects.platformer.simple {
import flash.ui.Keyboard;
public class Hero extends DynamicObject {
public var gravity:Number = 50;
public var acceleration:Number = 10;
public var maxVelocity:Number = 80;
public function Hero(name:String, params:Object = null) {
super(name, ... |
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package
{
public interface IClass
{
}
public class ClassImpl implements IClass
{
}
... |
package player.datas
{
import flash.events.EventDispatcher;
import flash.geom.Point;
import serverProto.inc.ProtoDiamondInfo;
import rank.model.data.RankTitleCfgInfo;
import serverProto.inc.ProtoPlayerKey;
import majorRole.def.MajorNinjaDef;
import player.events.PlayerDataEvent;
[Event(name=... |
package kabam.rotmg.arena.view {
import kabam.rotmg.arena.control.ReloadLeaderboard;
import kabam.rotmg.arena.model.ArenaLeaderboardFilter;
import kabam.rotmg.arena.model.ArenaLeaderboardModel;
import kabam.rotmg.arena.service.GetArenaLeaderboardTask;
import kabam.rotmg.dialogs.control.CloseDialogsSignal;
import org.s... |
//------------------------------------------------------------------------------
// Copyright (c) 2009-2013 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//-------... |
/*
Copyright (c) 2010 Trevor McCauley
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute... |
package com.axiomalaska.crks.dto {
// Generated May 28, 2011 5:53:51 PM
[Bindable]
public class SupportedEpsgGenerated extends AbstractDTO {
public var id:int;
public var idOgcLayer:int;
public var ogcLayer:OgcLayer;
public var epsg:int;
}
}
|
/*
Feathers
Copyright 2012-2015 Bowler Hat LLC. All Rights Reserved.
This program is free software. You can redistribute and/or modify it in
accordance with the terms of the accompanying license agreement.
*/
package feathers.controls
{
import feathers.core.FeathersControl;
import feathers.core.INativeFocusOwner;
i... |
/*
Copyright aswing.org, see the LICENCE.txt.
*/
package org.aswing.table.sorter{
import org.aswing.table.TableModel;
/**
* @author iiley
*/
public class Row{
public var modelIndex:int;
public var tableSorter:TableSorter;
public function Row(tableSorter:TableSorter, index:int) {
this.tableSorter = t... |
package com.playfab.AdminModels
{
public class CreatePlayerSharedSecretResult
{
public var SecretKey:String;
public function CreatePlayerSharedSecretResult(data:Object=null)
{
if(data == null)
return;
SecretKey = data.SecretKey;
}
}
... |
package
{
import flash.display.Sprite;
import flash.events.ErrorEvent;
import flash.events.Event;
import hansune.media.SuperSound;
import hansune.media.SuperSoundItem;
public class superSound_example extends Sprite
{
public function superSound_example()
{
SuperSound.addEffectQue(new Sup... |
/**
* Apache License
* Version 2.0, January 2004
* http://www.apache.org/licenses/
*
* TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
*
* 1. Definitions.
*
* "License" shall mean the terms and conditio... |
//----------------------------------------------------------------------------------------------------
// SiOPM effect controlable HPF
// Copyright (c) 2009 keim All rights reserved.
// Distributed under BSD-style license (see org.si.license.txt).
//----------------------------------------------------------------... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.