Click here to Skip to main content
15,888,098 members
Home / Discussions / Java
   

Java

 
AnswerRe: Phyton to Java Pin
42774805-Feb-10 20:32
42774805-Feb-10 20:32 
QuestionSlot Machine Java Help [modified] Pin
bmnot4-Feb-10 23:48
bmnot4-Feb-10 23:48 
AnswerRe: Slot Machine Java Help Pin
Richard MacCutchan5-Feb-10 1:00
mveRichard MacCutchan5-Feb-10 1:00 
GeneralRe: Slot Machine Java Help Pin
bmnot8-Feb-10 11:21
bmnot8-Feb-10 11:21 
GeneralRe: Slot Machine Java Help Pin
Richard MacCutchan8-Feb-10 11:36
mveRichard MacCutchan8-Feb-10 11:36 
GeneralRe: Slot Machine Java Help Pin
bmnot8-Feb-10 11:43
bmnot8-Feb-10 11:43 
GeneralRe: Slot Machine Java Help Pin
Richard MacCutchan8-Feb-10 21:16
mveRichard MacCutchan8-Feb-10 21:16 
GeneralRe: Slot Machine Java Help Pin
TorstenH.8-Feb-10 22:39
TorstenH.8-Feb-10 22:39 
no, this does not modify the value as the newFace() method does not return a value and/or modify any given value.

try to set the values like this:

Column column1=0;
Column column2=0;
Column column3=0;


It's alwasy good to not have uninitilzed values, give'em at least some "empty" value.

Also always include getter and (if needed or might be needed in future) setter:

public int getColumn1(){
 return column1;
}

public void setColumn1(int _column1){
 column1 = _column1;
}


do you know how to debug your code?

greets
Torsten
I never finish anyth...

Questionhow to change the center of rotation? Pin
002comp4-Feb-10 21:52
002comp4-Feb-10 21:52 
AnswerRe: how to change the center of rotation?(Solved) Next Ques:convert Local to World cordinates. Pin
002comp7-Feb-10 22:18
002comp7-Feb-10 22:18 
GeneralRe: how to change the center of rotation?(Solved) Next Ques:convert Local to World cordinates. Pin
Richard MacCutchan8-Feb-10 0:38
mveRichard MacCutchan8-Feb-10 0:38 
GeneralRe: how to change the center of rotation?(Solved) Next Ques:convert Local to World cordinates. Pin
42774808-Feb-10 0:40
42774808-Feb-10 0:40 
GeneralRe: how to change the center of rotation?(Solved) Next Ques:convert Local to World cordinates. Pin
002comp8-Feb-10 0:43
002comp8-Feb-10 0:43 
GeneralRe: how to change the center of rotation?(Solved) Next Ques:convert Local to World cordinates. Pin
42774808-Feb-10 1:10
42774808-Feb-10 1:10 
GeneralRe: how to change the center of rotation?(Solved) Next Ques:convert Local to World cordinates. Pin
002comp8-Feb-10 0:44
002comp8-Feb-10 0:44 
GeneralRe: how to change the center of rotation?(Solved) Next Ques:convert Local to World cordinates. Pin
Richard MacCutchan8-Feb-10 1:38
mveRichard MacCutchan8-Feb-10 1:38 
GeneralRe: how to change the center of rotation?(Solved) Next Ques:convert Local to World cordinates. Pin
002comp8-Feb-10 17:39
002comp8-Feb-10 17:39 
GeneralRe: how to change the center of rotation?(Solved) Next Ques:convert Local to World cordinates. Pin
Richard MacCutchan8-Feb-10 21:19
mveRichard MacCutchan8-Feb-10 21:19 
GeneralRe: how to change the center of rotation?(Solved) Next Ques:convert Local to World cordinates. Pin
002comp8-Feb-10 21:33
002comp8-Feb-10 21:33 
Questionfind software version Pin
sangeethanarayan4-Feb-10 1:03
sangeethanarayan4-Feb-10 1:03 
AnswerRe: find software version Pin
Richard MacCutchan4-Feb-10 1:17
mveRichard MacCutchan4-Feb-10 1:17 
Questioni m fail to run Pin
code_breaker3-Feb-10 23:45
code_breaker3-Feb-10 23:45 
AnswerRe: i m fail to run Pin
Richard MacCutchan4-Feb-10 0:13
mveRichard MacCutchan4-Feb-10 0:13 
Questionhow to change bounds of a scene? Pin
002comp1-Feb-10 22:27
002comp1-Feb-10 22:27 
AnswerRe: how to change bounds of a scene?(plz reply somebody) (Question Modified in better way)Now give any idea Pin
002comp3-Feb-10 18:06
002comp3-Feb-10 18:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.