emeric636 / andengine

Automatically exported from code.google.com/p/andengine
0 stars 0 forks source link

Missing source file in NetBeans #63

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Clone andengine project via NetBeans 7.1 git functionality
2. org.andengine.entity.text.ChangeableText is missing
3. Add it manually
4. Compile project

What is the expected output? What do you see instead?
C:\Users\xxx\Documents\NetBeansProjects\AndEngine\src\org\andengine\entity\text\
ChangeableText.java:103: cannot find symbol
symbol  : constructor 
Text(float,float,org.andengine.opengl.font.IFont,java.lang.String,org.andengine.
util.HorizontalAlign,float,org.andengine.opengl.vbo.VertexBufferObject.DrawType,
int)
location: class org.andengine.entity.text.Text
        super(pX, pY, pFont, pText, pHorizontalAlign, pLeading, pDrawType, pCharactersMaximum);
        ^
C:\Users\xxx\Documents\NetBeansProjects\AndEngine\src\org\andengine\entity\text\
ChangeableText.java:108: cannot find symbol
symbol  : constructor 
Text(float,float,org.andengine.opengl.font.IFont,java.lang.String,org.andengine.
util.HorizontalAlign,float,org.andengine.opengl.vbo.VertexBufferObject.DrawType,
int,org.andengine.opengl.shader.ShaderProgram)
location: class org.andengine.entity.text.Text
        super(pX, pY, pFont, pText, pHorizontalAlign, pLeading, pDrawType, pCharactersMaximum, pShaderProgram);
        ^
C:\Users\xxx\Documents\NetBeansProjects\AndEngine\src\org\andengine\entity\text\
ChangeableText.java:129: cannot find symbol
symbol  : method updateText(java.lang.String)
location: class org.andengine.entity.text.ChangeableText
                this.updateText(pText.substring(0, this.mCharactersMaximum - ChangeableText.ELLIPSIS_CHARACTER_COUNT).concat(ChangeableText.ELLIPSIS));
                    ^
C:\Users\xxx\Documents\NetBeansProjects\AndEngine\src\org\andengine\entity\text\
ChangeableText.java:131: cannot find symbol
symbol  : method updateText(java.lang.String)
location: class org.andengine.entity.text.ChangeableText
                this.updateText(pText.substring(0, this.mCharactersMaximum));
                    ^
C:\Users\xxx\Documents\NetBeansProjects\AndEngine\src\org\andengine\entity\text\
ChangeableText.java:135: cannot find symbol
symbol  : method updateText(java.lang.String)
location: class org.andengine.entity.text.ChangeableText
            this.updateText(pText);
                ^

What version of the product are you using? On what operating system?
NetBeans 7.1
AndEngine with new GLES2 (Current GitHub Version)
Windows 7 64x

Please provide any additional information below.
I could reproduce the issue on two computers. It seems since some days the 
ChangeableText class has deleted! Some examples also doesnt work after an 
actually update via github.

Original issue reported on code.google.com by killerpu...@googlemail.com on 31 Jan 2012 at 7:51

GoogleCodeExporter commented 9 years ago
Why exactly do you log this bug here, when you pulled the code from github? =)

ChangeableText is gone. Functionality was pulled down to Text.

Original comment by NicolasG...@gmail.com on 6 Feb 2012 at 5:43