javaquery/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 26 Jan 2013 08:47:05 +0100
changeset 592 5e13b1ac2886
parent 373 52386a70f9d9
child 804 7367a296a9ec
permissions -rw-r--r--
In order to support fields of the same name in subclasses we are now prefixing them with name of the class that defines them. To provide convenient way to access them from generated bytecode and also directly from JavaScript, there is a getter/setter function for each field. It starts with _ followed by the field name. If called with a parameter, it sets the field, with a parameter it just returns it.
jaroslav@140
     1
<?xml version="1.0" encoding="UTF-8"?>
jaroslav@140
     2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
jaroslav@140
     3
  <modelVersion>4.0.0</modelVersion>
jaroslav@140
     4
  <parent>
jaroslav@140
     5
    <artifactId>bck2brwsr</artifactId>
jaroslav@140
     6
    <groupId>org.apidesign</groupId>
jtulach@218
     7
    <version>0.3-SNAPSHOT</version>
jaroslav@140
     8
  </parent>
jaroslav@140
     9
  <groupId>org.apidesign.bck2brwsr</groupId>
jaroslav@140
    10
  <artifactId>javaquery</artifactId>
jtulach@218
    11
  <version>0.3-SNAPSHOT</version>
jaroslav@140
    12
  <packaging>pom</packaging>
jaroslav@140
    13
  <name>JavaQuery API and Demo</name>
jaroslav@140
    14
    <modules>
jaroslav@140
    15
        <module>api</module>
jaroslav@141
    16
        <module>demo-calculator</module>
jaroslav@375
    17
        <module>demo-calculator-dynamic</module>
jaroslav@140
    18
    </modules>
jaroslav@140
    19
</project>