-
Modell.Cell
A varos utjait alkoto mezoket megtestesito Cell osztaly
@author NKode
-
avian.Cell
-
bad.robot.excel.cell.Cell
-
br.net.woodstock.rockframework.document.spreadsheet.Cell
-
br.net.woodstock.rockframework.office.spreadsheet.Cell
-
cn.com.hotmaze.util.Cell
@author singerinsky
-
co.nubetech.crux.view.Cell
-
collage.grid.Cell
Grid cell that holds its bounds in graphical representation, along with its corresponding features.
-
com.aspose.cells.Cell
-
com.aspose.words.Cell
-
com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell
-
com.barrybecker4.puzzle.sudoku.model.board.Cell
@author Barry Becker
-
com.barrybecker4.simulation.habitat.model.Cell
@author Barry Becker
-
com.barrybecker4.simulation.liquid.model.Cell
A region of space containing particles, walls, or liquid. Adapted from work by Nick Foster. ^ vjp_[cur_] (positive v direction) | _____________ | | <-- | p | --> uip_[cur_] (positive u dir) | | ------------ | v |--- dx ---|
@author Barry Becker
-
com.esotericsoftware.tablelayout.Cell
A cell in a table.
@author Nathan Sweet
-
com.extjs.gxt.ui.client.widget.grid.GridSelectionModel.Cell
-
com.google.gdata.data.spreadsheet.Cell
-
com.google.gdt.eclipse.designer.uibinder.model.widgets.GridInfo.Cell
-
com.google.gwt.cell.client.Cell
A light weight representation of a renderable object.
Note: This class is new and its interface subject to change.
@param < C> the type that this Cell represents
-
com.google.gwt.gen2.table.event.client.TableEvent.Cell
Tests methods used for all {@link SortableGrid} class.
-
com.google.gwt.user.client.ui.HTMLTable.Cell
-
com.google.gwt.widgetideas.datepicker.client.SimpleCalendarView.CellGrid.Cell
-
com.google.refine.model.Cell
-
com.haulmont.yarg.formatters.impl.xls.Cell
-
com.jacobpatterson.csci446.program1.core.Cell
A cell is used to store two-dimensional integer coordinates.
-
com.l2client.navigation.Cell
A Cell represents a single triangle within a NavigationMesh. It contains functions for testing a path against the cell, and various ways to resolve collisions with the cell walls. Portions of the A* path finding algorythm are provided within this class as well, but the path finding process is managed by the parent Navigation Mesh. Portions Copyright (C) Greg Snook, 2000
@author TR
-
com.lowagie.text.Cell
A
Cell
is a
Rectangle
containing other
Element
s.
A Cell
must be added to a Table
. The Table
will place the Cell
in a Row
.
Example:
Table table = new Table(3); table.setBorderWidth(1); table.setBorderColor(new Color(0, 0, 255)); table.setCellpadding(5); table.setCellspacing(5); Cell cell = new Cell("header"); cell.setHeader(true); cell.setColspan(3); table.addCell(cell); cell = new Cell("example cell with colspan 1 and rowspan 2"); cell.setRowspan(2); cell.setBorderColor(new Color(255, 0, 0)); table.addCell(cell); table.addCell("1.1"); table.addCell("2.1"); table.addCell("1.2"); table.addCell("2.2");
@see Rectangle
@see Element
@see Table
@see Row
-
com.narirelays.ems.persistence.orm.Cell
Cell entity. @author MyEclipse Persistence Tools
-
com.subgraph.orchid.Cell
-
com.vaadin.client.ui.VGridLayout.Cell
-
com.youtube.vitess.vtgate.Row.Cell
-
core.Cell
-
edu.mayo.bmi.guoqian.claml.Cell
3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded" minOccurs="0"> <group ref="{}rubric.simple"/> <element ref="{}Para"/> <element ref="{}Include"/> <element ref="{}List"/> <element ref="{}Table"/> </choice> <attGroup ref="{}attlist.Cell"/> </restriction> </complexContent> </complexType> </element>
-
environment.Cell
@author Marco Celesti
-
es.mahulo.battleship.model.Cell
-
fr.soleil.bean.samplesbean.model.Cell
@author CAI
-
freecell.model.pile.Cell
-
gnonograms.utils.Cell
-
htm.Cell
Represents an HTM sequence cell that belongs to a given Column.
-
info.jtrac.domain.ExcelFile.Cell
-
javafx.scene.control.Cell
-
jxl.Cell
Represents an individual Cell within a Sheet. May be queried for its type and its content
-
kameleon.document.Cell
Represents a cell in an array.
Contains all of the informations concerning a given cell from an array. The content of the cell is stored as multiple paragraphs.
Standard properties include: none.
@author Fromentin Xavier, Schnell Michaël, Dervin Cyrielle, Brabant Quentin
@version 1.0
@see Array
-
ke.go.moh.oec.oecsm.data.Cell
@date Aug 19, 2010
@author Gitahi Ng'ang'a
-
mondrian.olap.Cell
an-release/3.2/src/main/mondrian/olap/Cell.java#1 $
-
net.firstpartners.spreadsheet.Cell
-
net.opentsdb.core.Internal.Cell
-
net.sf.jasperreports.components.table.Cell
@author Lucian Chirita (lucianc@users.sourceforge.net)
@version $Id: Cell.java 3601 2010-03-17 16:44:32Z lucianc $
-
org.apache.cassandra.db.Cell
Cell is immutable, which prevents all kinds of confusion in a multithreaded environment.
-
org.apache.hadoop.hbase.Cell
The unit of storage in HBase consisting of the following fields:
1) row 2) column family 3) column qualifier 4) timestamp 5) type 6) MVCC version 7) value
Uniqueness is determined by the combination of row, column family, column qualifier, timestamp, and type.
The natural comparator will perform a bitwise comparison on row, column family, and column qualifier. Less intuitively, it will then treat the greater timestamp as the lesser value with the goal of sorting newer cells first.
This interface does not include methods that allocate new byte[]'s such as those used in client or debugging code. These should be placed in a sub-interface or the {@link CellUtil} class.
Cell implements Comparable
which is only meaningful when comparing to other keys in the same table. It uses CellComparator which does not work on the -ROOT- and .META. tables. In the future, we may consider adding a boolean isOnHeap() method and a getValueBuffer() method that can be used to pass a value directly from an off-heap ByteBuffer to the network without copying into an on-heap byte[]. Historic note: the original Cell implementation (KeyValue) requires that all fields be encoded as consecutive bytes in the same byte[], whereas this interface allows fields to reside in separate byte[]'s.
|
-
org.apache.hadoop.hbase.io.Cell
Cell - Used to transport a cell value (byte[]) and the timestamp it was stored with together as a result for get and getRow methods. This promotes the timestamp of a cell to a first-class value, making it easy to take note of temporal data. Cell is used all the way from HStore up to HTable.
-
org.apache.lucene.spatial.prefix.tree.Cell
Represents a grid cell. These are not necessarily thread-safe, although new Cell("") (world cell) must be.
@lucene.experimental
-
org.apache.myfaces.tobago.internal.layout.Cell
To support horizontal and vertical spans, at each position will be a cell as a represantive. Either a "origin cell" for the first position or a "span cell" for spanned other positions.
-
org.apache.poi.ss.usermodel.Cell
High level representation of a cell in a row of a spreadsheet.
Cells can be numeric, formula-based or string-based (text). The cell type specifies this. String cells cannot conatin numbers and numeric cells cannot contain strings (at least according to our model). Client apps should do the conversions themselves. Formula cells have the formula string, as well as the formula result, which can be numeric or string.
Cells should have their number (0 based) before being added to a row.
-
org.boris.expr.function.excel.CELL
-
org.displaytag.model.Cell
Represents a table cell.
A cell is used only when the content is placed as content of the column tag and need to be evaluated during iteration.
@author Fabrizio Giustina
@version $Revision: 1190 $ ($Author: fgiust $)
-
org.drools.Cell
-
org.drools.compiler.Cell
-
org.drools.examples.conway.Cell
A
Cell
represents a single cell within a
CellGrid
. A cell may be either live or dead.
@author
Jeff Brown
@version $Id: Cell.java,v 1.3 2005/05/08 19:54:48 mproctor Exp $
@see CellState
@see CellGrid
-
org.dspace.app.xmlui.wing.element.Cell
-
org.eclipse.jgit.storage.dht.spi.memory.MemTable.Cell
-
org.formulacompiler.spreadsheet.Spreadsheet.Cell
-
org.gwt.mosaic.ui.client.event.TableEvent.Cell
-
org.gwtoolbox.widget.client.table.basic.Cell
@author Uri Boness
-
org.hypertable.thriftgen.Cell
Defines a table cell
- row_key
- Specifies the row key. Note, it cannot contain null characters. If a row key is not specified in a return cell, it's assumed to be the same as the previous cell
- column_family
- Specifies the column family
- column_qualifier
- Specifies the column qualifier. A column family must be specified.
- value
- Value of a cell. Currently a sequence of uninterpreted bytes.
- timestamp
- Nanoseconds since epoch for the cell
-
- revision
- A 64-bit revision number for the cell
- flag
- A 16-bit integer indicating the state of the cell
-
org.jdesktop.wonderland.client.cell.Cell
The client side representation of a cell. Cells are created via the CellCache and should not be instantiated directly by the user on the client.
@author paulby
-
org.jdesktop.wonderland.common.wfs.CellList.Cell
-
org.librebiz.pureport.definition.Cell
-
org.miv.pherd.ntree.Cell
A cell of the n-Tree. TODO: d�s qu'une particule est ajout�e il peut y avoir mitose. D�s qu'une particule est enlev�e il y a fusion. Cependant, durant le d�placement des particules (qui se fait de mani�re it�rative, toutes les particules calculent leur nouvelle position, puis bougent. Ne serait-il pas plus efficace de r�adapter l'arbre uniquement une fois que toutes les particules on boug�, et non pas � chaque particule ? C'est la raison pour laquelle certaines m�thodes sont suffix�es par "Direct". Elles agissent directement. Les m�thodes �quivalentes sans le suffixe "Direct" elles fonctionne it�rativement.
@see org.miv.pherd.ntree.NTree
@author Antoine Dutot
@since 2007
-
org.odftoolkit.simple.table.Cell
Cell represents table cell feature in ODF document.
Table provides methods to get/set/modify the cell content and cell properties.
-
org.olap4j.Cell
Cell returned from a {@link CellSet}.
@author jhyde
@version $Id: Cell.java 370 2010-11-22 07:32:50Z jhyde $
@since Aug 22, 2006
-
org.openfaces.component.table.Cell
@author Dmitry Pikhulya
-
org.openpixi.pixi.physics.grid.Cell
Represents one cell of the grid. WHEN ADDING NEW FIELDS THE COPY() METHOD NEEDS TO BE UPDATED !!!
-
org.pentaho.reporting.engine.classic.core.layout.process.CleanTableRowsPreparationStep.Cell
-
org.primefaces.model.Cell
-
org.saiku.web.rest.objects.resultset.Cell
Cell.
-
org.stathissideris.ascii2image.text.TextGrid.Cell
-
org.uguess.birt.report.engine.spreadsheet.model.Cell
This interface represents a cell object.
-
org.xlsx4j.sml.Cell
3.org/2001/XMLSchema}anyType"> <sequence> <element name="f" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_CellFormula" minOccurs="0"/> <element name="v" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" minOccurs="0"/> <element name="is" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_Rst" minOccurs="0"/> <element name="extLst" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_ExtensionList" minOccurs="0"/> </sequence> <attribute name="r" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_CellRef" /> <attribute name="s" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="0" /> <attribute name="t" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_CellType" default="n" /> <attribute name="cm" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="0" /> <attribute name="vm" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="0" /> <attribute name="ph" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> </restriction> </complexContent> </complexType>
-
org.zkoss.poi.ss.usermodel.Cell
-
org.zkoss.test.zss.Cell
@author sam
-
org.zkoss.zss.model.Cell
Represents a cell of a matrix model.
@author tomyeh
-
org.zkoss.zul.Cell
The generic cell component to be embedded into {@link Row} or {@link Vbox}or {@link Hbox} for fully control style and layout.
Default {@link #getZclass}: z-cell.
@author jumperchen
@since 5.0.0
-
pl.michalostruszka.gameoflife.cell.Cell
-
realcix20.classes.basic.Cell
-
rex.metadata.resultelements.Cell
Title: WHEX
Description:
Copyright: Copyright (c) 2003
Company:
@author igor
@version 1.0
-
vsv.Cell
cell is an entity with a pool of transcripts, proteins, templates and virions has ribosomes, detection proteins and response proteins has a half life produces virus in a range
@author akpinar