WUT_Computer_Science/EOPSY/lab4/task4/work/Page.java
2022-05-06 11:42:53 +02:00

25 lines
504 B
Java

public class Page
{
public int id;
public int physical;
public byte R;
public byte M;
public int inMemTime;
public int lastTouchTime;
public long high;
public long low;
public Page( int id, int physical, byte R, byte M, int inMemTime, int lastTouchTime, long high, long low )
{
this.id = id;
this.physical = physical;
this.R = R;
this.M = M;
this.inMemTime = inMemTime;
this.lastTouchTime = lastTouchTime;
this.high = high;
this.low = low;
}
}