I have some lengthy math description in 2 column paper to override the next column.

I think I need to make the math description in one column. How can I do that in 2 column mode?
The code (only the math part) is something like this
\documentclass[twocolumn]{article}
\usepackage{listings}
\usepackage{graphicx}
\usepackage{amsmath}
\newcommand{\caller}[1]{\textsc{Caller}(#1)}
\newcommand{\type}[2]{\textsc{Type}(#1, #2)}
\newcommand{\getset}[2]{\ensuremath{\{\, #1 \mid #2 \, \}}}
\newcommand{\phantomstring}{\hphantom{\caller{\textbf{C}.m}}}
\begin{document}1
\begin{align*}
\rlap{\caller{\textbf{C}.$f$}}\phantomstring
&= \getset{m'}{\forall m' \to \text{invoke static field\ } \textbf{C}.f}\\
\rlap{\type{$i$}{$m$}}\phantomstring
&= \text{returns the instantiation type of class that contains method $m$, which is invoked by method $i$}\\
\rlap{\type{$i$}{$f$}}\phantomstring
&= \text{returns the instantiation type of class that contains field $f$, which is accessed by method $i$}
\end{align*}
\end{document}


tabularor perhaps anarray? Are you limited in your package use? If not, I'm sure thetabularxpackage would work fine here. – Werner Nov 16 '12 at 3:34table*(note the asterisk) environment? – Mico Nov 16 '12 at 3:50