Advertisement
espmartin

Untitled

Jun 24th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.64 KB | None | 0 0
  1. public TitleAdapter(FragmentManager fm) {
  2.             super(fm);
  3.             // Display the Voltage Control fragment only
  4.             // if a table is found.
  5.             if (mVoltageExists) {
  6.                 frags[0] = new CPUSettings();
  7.                 frags[1] = new VoltageControlSettings();
  8.                 frags[2] = new Advanced();
  9.                 frags[3] = new TimeInState();
  10.                 frags[4] = new CPUInfo();
  11.             } else {
  12.                 frags[0] = new CPUSettings();
  13.                 frags[1] = new Advanced();
  14.                 frags[2] = new TimeInState();
  15.                 frags[3] = new CPUInfo();
  16.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement