aboutsummaryrefslogtreecommitdiff
path: root/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ProfilesTableModel.java
diff options
context:
space:
mode:
Diffstat (limited to 'hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ProfilesTableModel.java')
-rw-r--r--hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ProfilesTableModel.java68
1 files changed, 0 insertions, 68 deletions
diff --git a/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ProfilesTableModel.java b/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ProfilesTableModel.java
deleted file mode 100644
index fcbe6b57e..000000000
--- a/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ProfilesTableModel.java
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (C) 2009 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.hierarchyviewer.ui.model;
-
-import javax.swing.table.DefaultTableModel;
-import java.text.NumberFormat;
-
-public class ProfilesTableModel extends DefaultTableModel {
- private static final String[] NAMES = { "measure", "layout", "draw" };
-
- private final double[] profiles;
- private final NumberFormat formatter;
-
- public ProfilesTableModel(double[] profiles) {
- this.profiles = profiles;
- formatter = NumberFormat.getNumberInstance();
- }
-
- @Override
- public int getRowCount() {
- return profiles == null ? 0 : profiles.length;
- }
-
- @Override
- public Object getValueAt(int row, int column) {
- if (profiles == null) return "";
-
- if (column == 0) {
- return NAMES[row];
- }
-
-
- return formatter.format(profiles[row]) + "";
- }
-
- @Override
- public int getColumnCount() {
- return 2;
- }
-
- @Override
- public String getColumnName(int column) {
- return column == 0 ? "Operation" : "Duration (ms)";
- }
-
- @Override
- public boolean isCellEditable(int arg0, int arg1) {
- return false;
- }
-
- @Override
- public void setValueAt(Object arg0, int arg1, int arg2) {
- }
-}