Zelaron Gaming Forum

Zelaron Gaming Forum (http://zelaron.com/forum/index.php)
-   Tech Help (http://zelaron.com/forum/forumdisplay.php?f=329)
-   -   help plz (http://zelaron.com/forum/showthread.php?t=29335)

osmoses-jones 2004-05-19 06:14 AM

help plz
 
plz help i have to design a java interface called priority that has two methods setPriority and getPriority. so i have to design and implement a class called task that implements they Priority interface. and create a driver class to use some task objects.
this what i have so far

this my priority

public interface priority
{
public void setPriority (int priority)
public int getPriorty ();
}

this my task

public class task implements priority{
private string description;
private in importance;
task (string Name, int p) {
description = name;
imprtance = p;
public void setPriority (int priority){
importance = priority;
}
public int getPriority ();
return importance
}

this my task driver

public static void main (string [] args){
task, t1,t2,t3;
int priority1, priority2, priority3;
string description1, description2, description3;
system.out.println ("enter a description");
description= keyboard.readstring();
t1= new task priority1;
t2= new task priority2;
t3= new task priority3;

i got stuck in they task driver can someone tell me what do i add to make it work or tell me if i made any mistake plz help me


All times are GMT -6. The time now is 02:31 AM.

Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
This site is best seen with your eyes open.