From 432769694cc196a9a188e0eae5a55c75b51de9ad Mon Sep 17 00:00:00 2001 From: Javen O'Neal Date: Sat, 11 Jun 2016 02:12:43 +0000 Subject: whitespace (tabs to spaces); +props svn:eol-style=native git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1747839 13f79535-47bb-0310-9956-ffa450edef68 --- .../poi/xssf/usermodel/XSSFEvaluationSheet.java | 102 ++++++++++----------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationSheet.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationSheet.java index 329f78f3ed..22e1449db1 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationSheet.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationSheet.java @@ -30,57 +30,57 @@ import org.apache.poi.ss.usermodel.Row; */ final class XSSFEvaluationSheet implements EvaluationSheet { - private final XSSFSheet _xs; - private Map _cellCache; + private final XSSFSheet _xs; + private Map _cellCache; - public XSSFEvaluationSheet(XSSFSheet sheet) { - _xs = sheet; - } + public XSSFEvaluationSheet(XSSFSheet sheet) { + _xs = sheet; + } - public XSSFSheet getXSSFSheet() { - return _xs; - } - public EvaluationCell getCell(int rowIndex, int columnIndex) { - // cache for performance: ~30% speedup due to caching - if (_cellCache == null) { - _cellCache = new HashMap(_xs.getLastRowNum()*3); - for (final Row row : _xs) { - final int rowNum = row.getRowNum(); - for (final Cell cell : row) { - // cast is safe, the iterator is just defined using the interface - final CellKey key = new CellKey(rowNum, cell.getColumnIndex()); - final EvaluationCell evalcell = new XSSFEvaluationCell((XSSFCell) cell, this); - _cellCache.put(key, evalcell); - } - } - } - - return _cellCache.get(new CellKey(rowIndex, columnIndex)); - - } - - private static class CellKey { - private final int _row; - private final int _col; - private final int _hash; - - protected CellKey(int row, int col) { - _row = row; - _col = col; - _hash = (17 * 37 + row) * 37 + col; - } - - @Override - public int hashCode() { - return _hash; - } - - @Override - public boolean equals(Object obj) { - if (obj == null) return false; - // assumes other object is one of us, otherwise ClassCastException is thrown - final CellKey oKey = (CellKey) obj; - return _row == oKey._row && _col == oKey._col; - } - } + public XSSFSheet getXSSFSheet() { + return _xs; + } + + public EvaluationCell getCell(int rowIndex, int columnIndex) { + // cache for performance: ~30% speedup due to caching + if (_cellCache == null) { + _cellCache = new HashMap(_xs.getLastRowNum()*3); + for (final Row row : _xs) { + final int rowNum = row.getRowNum(); + for (final Cell cell : row) { + // cast is safe, the iterator is just defined using the interface + final CellKey key = new CellKey(rowNum, cell.getColumnIndex()); + final EvaluationCell evalcell = new XSSFEvaluationCell((XSSFCell) cell, this); + _cellCache.put(key, evalcell); + } + } + } + + return _cellCache.get(new CellKey(rowIndex, columnIndex)); + } + + private static class CellKey { + private final int _row; + private final int _col; + private final int _hash; + + protected CellKey(int row, int col) { + _row = row; + _col = col; + _hash = (17 * 37 + row) * 37 + col; + } + + @Override + public int hashCode() { + return _hash; + } + + @Override + public boolean equals(Object obj) { + if (obj == null) return false; + // assumes other object is one of us, otherwise ClassCastException is thrown + final CellKey oKey = (CellKey) obj; + return _row == oKey._row && _col == oKey._col; + } + } } -- cgit v1.2.3 /a>/_versions.html.erb
blob: 5af6a1f4b510c2cd14391320462f730ba73274b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<% if @versions.any? %>
  <div class="contextual">
    <%= link_to sprite_icon('lock', l(:label_close_versions)), close_completed_project_versions_path(@project), :class => 'icon icon-locked', :method => :put %>
  </div>
<% end %>
<p>
  <%= link_to sprite_icon('add', l(:label_version_new)), new_project_version_path(@project, :back_url => ''), :class => 'icon icon-add' if User.current.allowed_to?(:manage_versions, @project) %>
</p>

<%= form_tag(settings_project_path(@project, :tab => 'versions'), :method => :get) do %>
<fieldset><legend><%= l(:label_filter_plural) %></legend>
<label for='status'><%= l(:field_status) %>:</label>
<%= select_tag 'version_status', options_for_select([[l(:label_all), '']] + Version::VERSION_STATUSES.collect {|s| [l("version_status_#{s}"), s]}, @version_status), :onchange => "this.form.submit(); return false;"  %>
<label for='name'><%= l(:label_version) %>:</label>
<%= text_field_tag 'version_name', @version_name, :size => 30 %>
<%= submit_tag l(:button_apply), :name => nil %>
<%= link_to sprite_icon('reload', l(:button_clear)), settings_project_path(@project, :tab => 'versions'), :class => 'icon icon-reload' %>
</fieldset>
<% end %>
&nbsp;

<% if @versions.present? %>
<table class="list versions">
  <thead><tr>
    <th><%= l(:label_version) %></th>
    <th><%= l(:field_default_version) %></th>
    <th><%= l(:field_effective_date) %></th>
    <th><%= l(:field_description) %></th>
    <th><%= l(:field_status) %></th>
    <th><%= l(:field_sharing) %></th>
    <th><%= l(:label_wiki_page) %></th>
    <th style="width:15%"></th>
    </tr></thead>
  <tbody>
<% @versions.each do |version| %>
    <tr class="version <%=h version.status %> <%= 'shared' if version.project != @project %>">
    <% is_shared = version.project != @project %>
    <td class="name <%= 'icon icon-shared' if is_shared %>">
      <%= sprite_icon('link') if is_shared %>
      <%= link_to_version version %>
    </td>
    <td class="tick"><%= checked_image(version.id == @project.default_version_id) %></td>
    <td class="date"><%= format_date(version.effective_date) %></td>
    <td class="description"><%= version.description %></td>
    <td class="status"><%= l("version_status_#{version.status}") %></td>
    <td class="sharing"><%=h format_version_sharing(version.sharing) %></td>
    <td><%= link_to_if_authorized(version.wiki_page_title, {:controller => 'wiki', :action => 'show', :project_id => version.project, :id => Wiki.titleize(version.wiki_page_title)}) || h(version.wiki_page_title) unless version.wiki_page_title.blank? || version.project.wiki.nil? %></td>
    <td class="buttons">
      <% if version.project == @project && User.current.allowed_to?(:manage_versions, @project) %>
        <%= link_to sprite_icon('edit', l(:button_edit)), edit_version_path(version), :class => 'icon icon-edit' %>
        <%= delete_link version_path(version) %>
      <% end %>
     </td>
    </tr>
<% end %>
    </tbody>
</table>
<% else %>
<p class="nodata"><%= l(:label_no_data) %></p>
<% end %>