Introduced properties

init defaultinit(modelbuilder: ModelBuilder, mainmodule: MModule)

nitc :: IosProject :: defaultinit

Redefined properties

redef type SELF: IosProject

nitc $ IosProject :: SELF

Type of this instance, automatically specialized in every class
redef fun namespace: String

nitc $ IosProject :: namespace

Namespace/package used to identify the application

All properties

fun !=(other: nullable Object): Bool

core :: Object :: !=

Have self and other different values?
fun ==(other: nullable Object): Bool

core :: Object :: ==

Have self and other the same value?
type CLASS: Class[SELF]

core :: Object :: CLASS

The type of the class of self.
type SELF: Object

core :: Object :: SELF

Type of this instance, automatically specialized in every class
private var _files: Array[String]

nitc :: AppProject :: _files

Extra folders where to find platform specific resource files
private var _name: String

nitc :: AppProject :: _name

Pretty name of the resulting application
private var _namespace: String

nitc :: AppProject :: _namespace

Namespace/package used to identify the application
private var _short_name: String

nitc :: AppProject :: _short_name

Short project name used in namespace and configuration files
private var _version: String

nitc :: AppProject :: _version

Version of the application
private var _version_code: Int

nitc :: AppProject :: _version_code

Numerical version code of the application
protected fun class_factory(name: String): CLASS

core :: Object :: class_factory

Implementation used by get_class to create the specific class.
fun class_name: String

core :: Object :: class_name

The class name of the object.
init defaultinit(modelbuilder: ModelBuilder, mainmodule: MModule)

nitc :: IosProject :: defaultinit

init defaultinit(modelbuilder: ModelBuilder, mainmodule: MModule)

nitc :: AppProject :: defaultinit

fun files: Array[String]

nitc :: AppProject :: files

Extra folders where to find platform specific resource files
protected fun files=(files: Array[String])

nitc :: AppProject :: files=

Extra folders where to find platform specific resource files
fun get_class: CLASS

core :: Object :: get_class

The meta-object representing the dynamic type of self.
fun hash: Int

core :: Object :: hash

The hash code of the object.
init init

core :: Object :: init

fun inspect: String

core :: Object :: inspect

Developer readable representation of self.
protected fun inspect_head: String

core :: Object :: inspect_head

Return "CLASSNAME:#OBJECTID".
intern fun is_same_instance(other: nullable Object): Bool

core :: Object :: is_same_instance

Return true if self and other are the same instance (i.e. same identity).
fun is_same_serialized(other: nullable Object): Bool

core :: Object :: is_same_serialized

Is self the same as other in a serialization context?
intern fun is_same_type(other: Object): Bool

core :: Object :: is_same_type

Return true if self and other have the same dynamic type.
private fun mainmodule=(mainmodule: MModule)

nitc :: AppProject :: mainmodule=

private fun modelbuilder=(modelbuilder: ModelBuilder)

nitc :: AppProject :: modelbuilder=

fun name: String

nitc :: AppProject :: name

Pretty name of the resulting application
protected fun name=(name: String)

nitc :: AppProject :: name=

Pretty name of the resulting application
fun namespace: String

nitc :: AppProject :: namespace

Namespace/package used to identify the application
protected fun namespace=(namespace: String)

nitc :: AppProject :: namespace=

Namespace/package used to identify the application
private intern fun native_class_name: CString

core :: Object :: native_class_name

The class name of the object in CString format.
intern fun object_id: Int

core :: Object :: object_id

An internal hash code for the object based on its identity.
fun output

core :: Object :: output

Display self on stdout (debug only).
intern fun output_class_name

core :: Object :: output_class_name

Display class name on stdout (debug only).
fun serialization_hash: Int

core :: Object :: serialization_hash

Hash value use for serialization
fun short_name: String

nitc :: AppProject :: short_name

Short project name used in namespace and configuration files
protected fun short_name=(short_name: String)

nitc :: AppProject :: short_name=

Short project name used in namespace and configuration files
intern fun sys: Sys

core :: Object :: sys

Return the global sys object, the only instance of the Sys class.
abstract fun to_jvalue(env: JniEnv): JValue

core :: Object :: to_jvalue

fun to_s: String

core :: Object :: to_s

User readable representation of self.
fun version: String

nitc :: AppProject :: version

Version of the application
protected fun version=(version: String)

nitc :: AppProject :: version=

Version of the application
fun version_code: Int

nitc :: AppProject :: version_code

Numerical version code of the application
protected fun version_code=(version_code: Int)

nitc :: AppProject :: version_code=

Numerical version code of the application
package_diagram nitc::ios::IosProject IosProject nitc::AppProject AppProject nitc::ios::IosProject->nitc::AppProject core::Object Object nitc::AppProject->core::Object ...core::Object ... ...core::Object->core::Object

Ancestors

interface Object

core :: Object

The root of the class hierarchy.

Parents

class AppProject

nitc :: AppProject

Metadata associated to an app.nit project

Class definitions

nitc $ IosProject
private class IosProject
	super AppProject

	redef fun namespace do return super.to_camel_case
end
src/platform/ios.nit:39,1--43,3